forked from LadybirdBrowser/ladybird
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Meta: Only build vcpkg dependencies in release mode by default
We currently build debug and release versions of vcpkg dependencies. We will most commonly only need the release version, so let's default to that to approximately halve our dependency build time.
- Loading branch information
Showing
12 changed files
with
31 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
set(VCPKG_CMAKE_SYSTEM_NAME Darwin) | ||
set(VCPKG_TARGET_ARCHITECTURE arm64) | ||
set(VCPKG_OSX_ARCHITECTURES arm64) | ||
set(VCPKG_CRT_LINKAGE dynamic) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
set(VCPKG_CMAKE_SYSTEM_NAME Linux) | ||
set(VCPKG_TARGET_ARCHITECTURE x64) | ||
set(VCPKG_CRT_LINKAGE dynamic) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
set(VCPKG_CMAKE_SYSTEM_NAME Darwin) | ||
set(VCPKG_TARGET_ARCHITECTURE x64) | ||
set(VCPKG_OSX_ARCHITECTURES x86_64) | ||
set(VCPKG_CRT_LINKAGE dynamic) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include (${CMAKE_CURRENT_LIST_DIR}/../base-triplets/arm64-osx.cmake) | ||
include (${CMAKE_CURRENT_LIST_DIR}/release.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
set(VCPKG_BUILD_TYPE release) | ||
set(VCPKG_LIBRARY_LINKAGE static) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include (${CMAKE_CURRENT_LIST_DIR}/../base-triplets/x64-linux.cmake) | ||
include (${CMAKE_CURRENT_LIST_DIR}/release.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include (${CMAKE_CURRENT_LIST_DIR}/../base-triplets/x64-osx.cmake) | ||
include (${CMAKE_CURRENT_LIST_DIR}/release.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
set(VCPKG_TARGET_ARCHITECTURE arm64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
|
||
set(VCPKG_CMAKE_SYSTEM_NAME Darwin) | ||
set(VCPKG_OSX_ARCHITECTURES arm64) | ||
|
||
set(VCPKG_C_FLAGS "") | ||
set(VCPKG_CXX_FLAGS "-frtti") | ||
include (${CMAKE_CURRENT_LIST_DIR}/../base-triplets/arm64-osx.cmake) | ||
include (${CMAKE_CURRENT_LIST_DIR}/sanitizer.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
|
||
set(VCPKG_C_FLAGS "") | ||
set(VCPKG_CXX_FLAGS "-frtti") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,2 @@ | ||
set(VCPKG_TARGET_ARCHITECTURE x64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
|
||
set(VCPKG_CMAKE_SYSTEM_NAME Linux) | ||
|
||
set(VCPKG_C_FLAGS "") | ||
set(VCPKG_CXX_FLAGS "-frtti") | ||
include (${CMAKE_CURRENT_LIST_DIR}/../base-triplets/x64-linux.cmake) | ||
include (${CMAKE_CURRENT_LIST_DIR}/sanitizer.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
set(VCPKG_TARGET_ARCHITECTURE x64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
|
||
set(VCPKG_CMAKE_SYSTEM_NAME Darwin) | ||
set(VCPKG_OSX_ARCHITECTURES x86_64) | ||
|
||
set(VCPKG_C_FLAGS "") | ||
set(VCPKG_CXX_FLAGS "-frtti") | ||
include (${CMAKE_CURRENT_LIST_DIR}/../base-triplets/x64-osx.cmake) | ||
include (${CMAKE_CURRENT_LIST_DIR}/sanitizer.cmake) |