mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2025-10-04 05:41:58 +08:00
13 lines
276 B
CMake
13 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}
|
|
)
|