mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
Added WITH_CLIENT_COMMON option.
This commit is contained in:
@@ -776,8 +776,8 @@ if(WITH_CHANNELS)
|
|||||||
add_subdirectory(channels)
|
add_subdirectory(channels)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(WITH_CLIENT)
|
if(WITH_CLIENT_COMMON OR WITH_CLIENT)
|
||||||
add_subdirectory(client)
|
add_subdirectory(client)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(WITH_SERVER)
|
if(WITH_SERVER)
|
||||||
|
|||||||
@@ -60,7 +60,8 @@ CMAKE_DEPENDENT_OPTION(TESTS_WTSAPI_EXTRA "Build extra WTSAPI tests (interactive
|
|||||||
|
|
||||||
option(WITH_SAMPLE "Build sample code" OFF)
|
option(WITH_SAMPLE "Build sample code" OFF)
|
||||||
|
|
||||||
option(WITH_CLIENT "Build client binaries" ON)
|
option(WITH_CLIENT_COMMON "Build client common library" ON)
|
||||||
|
cmake_dependent_option(WITH_CLIENT "Build client binaries" ON WITH_CLIENT_COMMON ON)
|
||||||
option(WITH_SERVER "Build server binaries" OFF)
|
option(WITH_SERVER "Build server binaries" OFF)
|
||||||
|
|
||||||
option(STATIC_CHANNELS "Build channels statically" ON)
|
option(STATIC_CHANNELS "Build channels statically" ON)
|
||||||
|
|||||||
Reference in New Issue
Block a user