mirror of
https://github.com/savoirfairelinux/jami-client-qt.git
synced 2025-12-17 07:53:24 +08:00
cmake : fix output directory for windows builds
The output directory for windows builds currently matches either Release or Beta. This does not work as Beta is only a build option, not a build type. Changes : - Change build output directory to match the cmake build type (Release or Debug) - Change Beta output path references to Release Change-Id: Ib513f177d93e3c9fb529e00aa160443ac2e804b5
This commit is contained in:
committed by
Félix Boucher
parent
e24f3d91e8
commit
99f246016d
@@ -84,10 +84,8 @@ if(WIN32)
|
||||
if(BETA)
|
||||
message(STATUS "Beta config enabled")
|
||||
add_definitions(-DBETA)
|
||||
set(JAMI_OUTPUT_DIRECTORY_RELEASE ${PROJECT_SOURCE_DIR}/x64/Beta)
|
||||
else()
|
||||
set(JAMI_OUTPUT_DIRECTORY_RELEASE ${PROJECT_SOURCE_DIR}/x64/Release)
|
||||
endif()
|
||||
set(JAMI_OUTPUT_DIRECTORY_RELEASE ${PROJECT_SOURCE_DIR}/x64/${CMAKE_BUILD_TYPE})
|
||||
endif()
|
||||
|
||||
if(WIN32)
|
||||
|
||||
Reference in New Issue
Block a user