Skip to content

Commit

Permalink
static linkage of zeromq for all architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
tekdogan committed Aug 7, 2024
1 parent fa2a343 commit fe4305d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
6 changes: 5 additions & 1 deletion custom-triplets/arm64-linux-nes.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,8 @@ endif()

if (PORT STREQUAL oatpp)
set(VCPKG_LIBRARY_LINKAGE static)
endif()
endif()

if (PORT STREQUAL zeromq)
set(VCPKG_LIBRARY_LINKAGE static)
endif()
6 changes: 5 additions & 1 deletion custom-triplets/arm64-osx-nes.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,8 @@ endif()

if (PORT STREQUAL oatpp)
set(VCPKG_LIBRARY_LINKAGE static)
endif()
endif()

if (PORT STREQUAL zeromq)
set(VCPKG_LIBRARY_LINKAGE static)
endif()
6 changes: 5 additions & 1 deletion custom-triplets/x64-linux-musl-nes.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,8 @@ endif()

if (PORT STREQUAL oatpp)
set(VCPKG_LIBRARY_LINKAGE static)
endif()
endif()

if (PORT STREQUAL zeromq)
set(VCPKG_LIBRARY_LINKAGE static)
endif()
6 changes: 5 additions & 1 deletion custom-triplets/x64-osx-nes.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,8 @@ endif()

if (PORT STREQUAL oatpp)
set(VCPKG_LIBRARY_LINKAGE static)
endif()
endif()

if (PORT STREQUAL zeromq)
set(VCPKG_LIBRARY_LINKAGE static)
endif()

0 comments on commit fe4305d

Please sign in to comment.