mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
CMake options to compile without proxy or shadow
* Added WITH_SHADOW (default ON) to compile without shadow server * Added WITH_PROXY (default ON) to compile without proxy server
This commit is contained in:
@@ -160,8 +160,3 @@ endif(ANDROID)
|
||||
if (IOS)
|
||||
include(ConfigOptionsiOS)
|
||||
endif(IOS)
|
||||
|
||||
if (WITH_SERVER)
|
||||
# Proxy Options
|
||||
option(WITH_PROXY_MODULES "Compile proxy modules" OFF)
|
||||
endif()
|
||||
|
||||
@@ -16,10 +16,19 @@
|
||||
# limitations under the License.
|
||||
|
||||
# Servers
|
||||
include(CMakeDependentOption)
|
||||
|
||||
CMAKE_DEPENDENT_OPTION(WITH_SHADOW "Compile with shadow server" ON "WITH_SERVER" OFF)
|
||||
CMAKE_DEPENDENT_OPTION(WITH_PROXY "Compile with proxy server" ON "WITH_SERVER" OFF)
|
||||
CMAKE_DEPENDENT_OPTION(WITH_PROXY_MODULES "Compile proxy modules" ON "WITH_PROXY" OFF)
|
||||
|
||||
add_subdirectory(common)
|
||||
add_subdirectory(shadow)
|
||||
add_subdirectory(proxy)
|
||||
if (WITH_SHADOW)
|
||||
add_subdirectory(shadow)
|
||||
endif()
|
||||
if (WITH_PROXY)
|
||||
add_subdirectory(proxy)
|
||||
endif()
|
||||
|
||||
if(FREERDP_VENDOR)
|
||||
if(WITH_SAMPLE)
|
||||
|
||||
Reference in New Issue
Block a user