mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-08 09:14:10 +01:00
14 lines
276 B
CMake
14 lines
276 B
CMake
include_directories(${CMAKE_BINARY_DIR}/win)
|
|
|
|
add_executable(vncconfig WIN32
|
|
Legacy.cxx
|
|
PasswordDialog.cxx
|
|
vncconfig.cxx
|
|
vncconfig.rc)
|
|
|
|
target_link_libraries(vncconfig rfb_win32 rfb network rdr ws2_32.lib)
|
|
|
|
install(TARGETS vncconfig
|
|
RUNTIME DESTINATION ${BIN_DIR}
|
|
)
|