Skip to content

Commit 744a28e

Browse files
committed
[soundtouch] build soundtouch as dynamic all the time
1 parent 9cfbd84 commit 744a28e

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,6 @@ __pycache__/
300300
!/triplets/x64-windows-static.cmake
301301
!/triplets/x64-windows.cmake
302302
!/triplets/x86-windows.cmake
303-
304303
!/triplets/community
305304
!/triplets/community/**
306305

@@ -321,4 +320,3 @@ prefab/
321320
###################
322321
pythonenv3.8/
323322
.venv/
324-
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
set(VCPKG_TARGET_ARCHITECTURE arm64)
2+
set(VCPKG_CRT_LINKAGE dynamic)
3+
4+
if(${PORT} MATCHES "soundtouch")
5+
set(VCPKG_LIBRARY_LINKAGE dynamic)
6+
else()
7+
set(VCPKG_LIBRARY_LINKAGE static)
8+
endif()
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
set(VCPKG_TARGET_ARCHITECTURE x64)
2+
set(VCPKG_CRT_LINKAGE dynamic)
3+
4+
if(${PORT} MATCHES "soundtouch")
5+
set(VCPKG_LIBRARY_LINKAGE dynamic)
6+
else()
7+
set(VCPKG_LIBRARY_LINKAGE static)
8+
endif()

0 commit comments

Comments
 (0)