mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-07 08:44:06 +01:00
16 lines
347 B
CMake
16 lines
347 B
CMake
include_directories(${CMAKE_SOURCE_DIR}/common ${CMAKE_SOURCE_DIR}/win)
|
|
|
|
configure_file(resdefs.h.in ${CMAKE_CURRENT_BINARY_DIR}/resdefs.h)
|
|
|
|
IF(CMAKE_BUILD_TYPE MATCHES Debug)
|
|
add_definitions(-D_DEBUG)
|
|
ENDIF()
|
|
|
|
add_subdirectory(rfb_win32)
|
|
|
|
if(BUILD_WINVNC)
|
|
add_subdirectory(vncconfig)
|
|
add_subdirectory(winvnc)
|
|
add_subdirectory(wm_hooks)
|
|
endif()
|