handle library release path for faceshift MinSizeRel build

This commit is contained in:
Stephen Birarda 2017-03-23 17:06:22 -07:00
parent 5311de1f7b
commit ee521ed369

View file

@ -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")