mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-29 15:19:44 +02:00
Fix mixup of vamp-sdk release and debug libraries
There were two problems: 1. The vamp-sdk vcpkg port added a `d` suffix for debug builds that upstream did not. 2. The vamp-sdk vcpkg port used the same file name for libraries on every OS but that is not what upstream does. Signed-off-by: Be <be@mixxx.org>
This commit is contained in:
parent
3fe7938469
commit
51c413b336
@ -50,7 +50,9 @@ find_path(VampHostSDK_INCLUDE_DIR
|
|||||||
mark_as_advanced(VampHostSDK_INCLUDE_DIR)
|
mark_as_advanced(VampHostSDK_INCLUDE_DIR)
|
||||||
|
|
||||||
find_library(VampHostSDK_LIBRARY
|
find_library(VampHostSDK_LIBRARY
|
||||||
NAMES vamp-hostsdk
|
# The library has different file names on Windows (VampHostSDK) compared
|
||||||
|
# to Linux and macOS (vamp-hostsdk).
|
||||||
|
NAMES vamp-hostsdk VampHostSDK
|
||||||
PATHS ${PC_VampHostSDK_LIBRARY_DIRS}
|
PATHS ${PC_VampHostSDK_LIBRARY_DIRS}
|
||||||
DOC "VampHostSDK library"
|
DOC "VampHostSDK library"
|
||||||
)
|
)
|
||||||
|
2
vcpkg
2
vcpkg
@ -1 +1 @@
|
|||||||
Subproject commit f8d74b5224513183a71199f60e25d741af984abf
|
Subproject commit 9c84b3970064eaedb405990797d79a93186b1e08
|
Loading…
x
Reference in New Issue
Block a user