mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
Meta: Add a debug build CMake preset
Since the default mode now only builds release vcpkg libraries, having an easy-to-create debug build will be convenient.
This commit is contained in:
2
Meta/CMake/vcpkg/debug-triplets/arm64-osx.cmake
Normal file
2
Meta/CMake/vcpkg/debug-triplets/arm64-osx.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
include (${CMAKE_CURRENT_LIST_DIR}/../base-triplets/arm64-osx.cmake)
|
||||
include (${CMAKE_CURRENT_LIST_DIR}/debug.cmake)
|
||||
3
Meta/CMake/vcpkg/debug-triplets/debug.cmake
Normal file
3
Meta/CMake/vcpkg/debug-triplets/debug.cmake
Normal file
@@ -0,0 +1,3 @@
|
||||
# Ideally, we would set VCPKG_BUILD_TYPE="debug", but that is currently not supported as a standalone build type.
|
||||
# See: https://github.com/microsoft/vcpkg/issues/38224
|
||||
set(VCPKG_LIBRARY_LINKAGE static)
|
||||
2
Meta/CMake/vcpkg/debug-triplets/x64-linux.cmake
Normal file
2
Meta/CMake/vcpkg/debug-triplets/x64-linux.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
include (${CMAKE_CURRENT_LIST_DIR}/../base-triplets/x64-linux.cmake)
|
||||
include (${CMAKE_CURRENT_LIST_DIR}/debug.cmake)
|
||||
2
Meta/CMake/vcpkg/debug-triplets/x64-osx.cmake
Normal file
2
Meta/CMake/vcpkg/debug-triplets/x64-osx.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
include (${CMAKE_CURRENT_LIST_DIR}/../base-triplets/x64-osx.cmake)
|
||||
include (${CMAKE_CURRENT_LIST_DIR}/debug.cmake)
|
||||
Reference in New Issue
Block a user