1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-18 00:21:18 +02:00

Fix multi-config builds

Hopefully, this corrects the handling of the different
configs like Debug, Release, etc, when dealing with
multi-config generators.
This commit is contained in:
Leland Lucius
2020-02-06 20:10:29 -06:00
parent 8e8e71116a
commit 2ec12c150b
6 changed files with 84 additions and 27 deletions

View File

@@ -30,10 +30,9 @@ list( APPEND LIBRARIES
Audacity
)
set_target_property_all( ${TARGET} LIBRARY_OUTPUT_DIRECTORY "${_DEST}/modules" )
set_target_properties( ${TARGET}
PROPERTIES
LIBRARY_OUTPUT_DIRECTORY_${CMAKE_BUILD_TYPE} "${_DEST}/modules"
LIBRARY_OUTPUT_DIRECTORY "${_DEST}/modules"
PREFIX ""
FOLDER "lib-src"
)