Skip to content

Commit

Permalink
Remove common.cmake include from triplet files
Browse files Browse the repository at this point in the history
Eliminating the inclusion of common.cmake from various triplet files to streamline configuration. This change ensures individual triplet files are self-sufficient and simplifies the build setup.
  • Loading branch information
inakleinbottle committed Oct 30, 2024
1 parent 48689c1 commit 510bc97
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion tools/triplets/arm-uwp.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
include(${CMAKE_CURRENT_LIST_DIR}/common.cmake)
set(VCPKG_TARGET_ARCHITECTURE arm)
set(VCPKG_CRT_LINKAGE dynamic)
set(VCPKG_LIBRARY_LINKAGE dynamic)
Expand Down
2 changes: 0 additions & 2 deletions tools/triplets/arm64-osx.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
include(${CMAKE_CURRENT_LIST_DIR}/common.cmake)

set(VCPKG_TARGET_ARCHITECTURE arm64)
set(VCPKG_CRT_LINKAGE dynamic)
set(VCPKG_LIBRARY_LINKAGE static)
Expand Down
1 change: 0 additions & 1 deletion tools/triplets/arm64-windows.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
include(${CMAKE_CURRENT_LIST_DIR}/common.cmake)
set(VCPKG_TARGET_ARCHITECTURE arm64)
set(VCPKG_CRT_LINKAGE dynamic)
set(VCPKG_LIBRARY_LINKAGE dynamic)
Empty file removed tools/triplets/common.cmake
Empty file.
1 change: 0 additions & 1 deletion tools/triplets/x64-linux.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
include(${CMAKE_CURRENT_LIST_DIR}/common.cmake)
set(VCPKG_TARGET_ARCHITECTURE x64)
set(VCPKG_CRT_LINKAGE dynamic)
set(VCPKG_LIBRARY_LINKAGE static)
Expand Down
1 change: 0 additions & 1 deletion tools/triplets/x64-osx.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
include(${CMAKE_CURRENT_LIST_DIR}/common.cmake)
set(VCPKG_TARGET_ARCHITECTURE x64)
set(VCPKG_CRT_LINKAGE dynamic)
set(VCPKG_LIBRARY_LINKAGE static)
Expand Down
1 change: 0 additions & 1 deletion tools/triplets/x64-uwp.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
include(${CMAKE_CURRENT_LIST_DIR}/common.cmake)
set(VCPKG_TARGET_ARCHITECTURE x64)
set(VCPKG_CRT_LINKAGE dynamic)
set(VCPKG_LIBRARY_LINKAGE dynamic)
Expand Down
1 change: 0 additions & 1 deletion tools/triplets/x64-windows.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
include(${CMAKE_CURRENT_LIST_DIR}/common.cmake)
set(VCPKG_TARGET_ARCHITECTURE x64)
set(VCPKG_CRT_LINKAGE dynamic)
set(VCPKG_LIBRARY_LINKAGE static)
1 change: 0 additions & 1 deletion tools/triplets/x86-windows.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
include(${CMAKE_CURRENT_LIST_DIR}/common.cmake)
set(VCPKG_TARGET_ARCHITECTURE x86)
set(VCPKG_CRT_LINKAGE dynamic)
set(VCPKG_LIBRARY_LINKAGE static)

0 comments on commit 510bc97

Please sign in to comment.