mirror of
https://github.com/lubosz/overte.git
synced 2025-04-08 20:22:34 +02:00
handle library release path for faceshift MinSizeRel build
This commit is contained in:
parent
5311de1f7b
commit
ee521ed369
1 changed files with 1 additions and 1 deletions
2
cmake/externals/faceshift/CMakeLists.txt
vendored
2
cmake/externals/faceshift/CMakeLists.txt
vendored
|
@ -28,7 +28,7 @@ if (WIN32)
|
|||
set(LIBRARY_PREFIX "")
|
||||
set(LIBRARY_EXT "lib")
|
||||
# use RelWithDebInfo in release path when building RelWithDebInfo config on Windows
|
||||
set(LIBRARY_RELEASE_PATH "$<$<CONFIG:RelWithDebInfo>:build/RelWithDebInfo>$<$<NOT:$<CONFIG:RelWithDebInfo>>:lib/Release>")
|
||||
set(LIBRARY_RELEASE_PATH "$<$<CONFIG:RelWithDebInfo>:build/RelWithDebInfo>$<$<CONFIG:MinSizeRel>:build/MinSizeRel>$<$<CONFIG:Release>:lib/Release>")
|
||||
elseif (APPLE)
|
||||
set(LIBRARY_EXT "a")
|
||||
set(LIBRARY_PREFIX "lib")
|
||||
|
|
Loading…
Reference in a new issue