barrier/src/lib/synergy/CMakeLists.txt

141 lines
2.4 KiB
CMake
Raw Normal View History

2012-06-10 16:50:54 +00:00
# synergy -- mouse and keyboard sharing utility
# Copyright (C) 2012 Bolton Software Ltd.
# Copyright (C) 2009 Nick Bolton
2012-06-10 16:50:54 +00:00
#
# 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
CPortableTaskBarReceiver.h
2012-06-10 16:50:54 +00:00
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
CCryptoStream.h
CCryptoMode.h
ECryptoMode.h
CCryptoOptions.h
2012-06-10 16:50:54 +00:00
)
set(src
CClientTaskBarReceiver.cpp
CServerTaskBarReceiver.cpp
CPortableTaskBarReceiver.cpp
2012-06-10 16:50:54 +00:00
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
CGameDevice.cpp
CCryptoStream.cpp
CCryptoMode.cpp
CCryptoOptions.cpp
)
if (WIN32)
2012-06-10 16:50:54 +00:00
list(APPEND inc
CAppUtilWindows.h
CGameDevice.h
)
list(APPEND src
${inc}
CAppUtilWindows.cpp
)
elseif(UNIX)
list(APPEND src
2012-06-10 16:50:54 +00:00
CAppUtilUnix.cpp
)
endif()
set(inc
../arch
../base
../client
../common
../io
../ipc
2012-06-10 16:50:54 +00:00
../mt
../net
../platform
../server
../synergy
../..
../../../tools
2012-06-10 16:50:54 +00:00
)
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 ipc net base platform mt server cryptopp)
2012-06-10 16:50:54 +00:00
endif()