130 lines
2.2 KiB
CMake
130 lines
2.2 KiB
CMake
|
# synergy -- mouse and keyboard sharing utility
|
||
|
# Copyright (C) 2009 Chris Schoeneman, Nick Bolton, Sorin Sbarnea
|
||
|
#
|
||
|
# This package is free software; you can redistribute it and/or
|
||
|
# modify it under the terms of the GNU General Public License
|
||
|
# found in the file COPYING that should have accompanied this file.
|
||
|
#
|
||
|
# This package is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
set(inc
|
||
|
CClientTaskBarReceiver.h
|
||
|
CServerTaskBarReceiver.h
|
||
|
CApp.h
|
||
|
CClientApp.h
|
||
|
CServerApp.h
|
||
|
CClipboard.h
|
||
|
CKeyMap.h
|
||
|
CKeyState.h
|
||
|
CPacketStreamFilter.h
|
||
|
CPlatformScreen.h
|
||
|
CProtocolUtil.h
|
||
|
CScreen.h
|
||
|
ClipboardTypes.h
|
||
|
IClient.h
|
||
|
IClipboard.h
|
||
|
IKeyState.h
|
||
|
IPlatformScreen.h
|
||
|
IPrimaryScreen.h
|
||
|
IScreen.h
|
||
|
IScreenSaver.h
|
||
|
ISecondaryScreen.h
|
||
|
KeyTypes.h
|
||
|
MouseTypes.h
|
||
|
OptionTypes.h
|
||
|
ProtocolTypes.h
|
||
|
XScreen.h
|
||
|
XSynergy.h
|
||
|
GameDeviceTypes.h
|
||
|
CDaemonApp.h
|
||
|
CAppUtil.h
|
||
|
CArgsBase.h
|
||
|
IAppUtil.h
|
||
|
CEventGameDevice.h
|
||
|
CVncClient.h
|
||
|
)
|
||
|
|
||
|
set(src
|
||
|
CClientTaskBarReceiver.cpp
|
||
|
CServerTaskBarReceiver.cpp
|
||
|
CApp.cpp
|
||
|
CClientApp.cpp
|
||
|
CServerApp.cpp
|
||
|
CClipboard.cpp
|
||
|
CKeyMap.cpp
|
||
|
CKeyState.cpp
|
||
|
CPacketStreamFilter.cpp
|
||
|
CPlatformScreen.cpp
|
||
|
CProtocolUtil.cpp
|
||
|
CScreen.cpp
|
||
|
IClipboard.cpp
|
||
|
IKeyState.cpp
|
||
|
IPrimaryScreen.cpp
|
||
|
IScreen.cpp
|
||
|
KeyTypes.cpp
|
||
|
ProtocolTypes.cpp
|
||
|
XScreen.cpp
|
||
|
XSynergy.cpp
|
||
|
ISecondaryScreen.cpp
|
||
|
CDaemonApp.cpp
|
||
|
CAppUtil.cpp
|
||
|
CArgsBase.cpp
|
||
|
CEventGameDevice.cpp
|
||
|
CVncClient.cpp
|
||
|
)
|
||
|
|
||
|
if (WIN32)
|
||
|
list(APPEND inc
|
||
|
CAppUtilWindows.h
|
||
|
CGameDevice.h
|
||
|
)
|
||
|
|
||
|
list(APPEND src
|
||
|
${inc}
|
||
|
CAppUtilWindows.cpp
|
||
|
CGameDevice.cpp
|
||
|
)
|
||
|
elseif(UNIX)
|
||
|
list(APPEND src
|
||
|
CAppUtilUnix.cpp
|
||
|
)
|
||
|
endif()
|
||
|
|
||
|
set(inc
|
||
|
../arch
|
||
|
../base
|
||
|
../client
|
||
|
../common
|
||
|
../io
|
||
|
../mt
|
||
|
../net
|
||
|
../platform
|
||
|
../server
|
||
|
../synergy
|
||
|
../..
|
||
|
../../vnc/common
|
||
|
)
|
||
|
|
||
|
if (UNIX)
|
||
|
list(APPEND inc
|
||
|
../../..
|
||
|
)
|
||
|
elseif (WIN32)
|
||
|
list(APPEND inc
|
||
|
../../vnc/win
|
||
|
)
|
||
|
endif()
|
||
|
|
||
|
include_directories(${inc})
|
||
|
add_library(synergy STATIC ${src})
|
||
|
|
||
|
if (UNIX)
|
||
|
target_link_libraries(synergy arch client net base platform mt server)
|
||
|
endif()
|