mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-22 16:13:13 +01:00
41 lines
803 B
CMake
41 lines
803 B
CMake
|
set(RFB_WIN32_SOURCES
|
||
|
AboutDialog.cxx
|
||
|
Clipboard.cxx
|
||
|
CurrentUser.cxx
|
||
|
DeviceContext.cxx
|
||
|
DeviceFrameBuffer.cxx
|
||
|
Dialog.cxx
|
||
|
DIBSectionBuffer.cxx
|
||
|
EventManager.cxx
|
||
|
LaunchProcess.cxx
|
||
|
ListViewControl.cxx
|
||
|
MonitorInfo.cxx
|
||
|
MsgWindow.cxx
|
||
|
RegConfig.cxx
|
||
|
Registry.cxx
|
||
|
SecurityPage.cxx
|
||
|
SDisplayCorePolling.cxx
|
||
|
SDisplayCoreWMHooks.cxx
|
||
|
SDisplay.cxx
|
||
|
Security.cxx
|
||
|
Service.cxx
|
||
|
SInput.cxx
|
||
|
SocketManager.cxx
|
||
|
TCharArray.cxx
|
||
|
TsSessions.cxx
|
||
|
Win32Util.cxx
|
||
|
WMCursor.cxx
|
||
|
WMHooks.cxx
|
||
|
WMNotifier.cxx
|
||
|
WMPoller.cxx
|
||
|
WMShatter.cxx
|
||
|
WMWindowCopyRect.cxx)
|
||
|
|
||
|
if(BUILD_WINVNC)
|
||
|
set(RFB_WIN32_SOURCES ${RFB_WIN32_SOURCES} CleanDesktop.cxx)
|
||
|
endif()
|
||
|
|
||
|
add_library(rfb_win32 STATIC ${RFB_WIN32_SOURCES})
|
||
|
|
||
|
target_link_libraries(rfb_win32 user32.lib comctl32.lib wtsapi32.lib version.lib)
|