2012-06-10 16:50:54 +00:00
|
|
|
# synergy -- mouse and keyboard sharing utility
|
2014-11-02 12:12:05 +00:00
|
|
|
# Copyright (C) 2012 Synergy Si Ltd.
|
2012-09-04 02:09:56 +00:00
|
|
|
# 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/>.
|
|
|
|
|
|
|
|
if (WIN32)
|
2014-02-28 12:36:45 +00:00
|
|
|
file(GLOB headers "MSWindows*.h")
|
|
|
|
file(GLOB sources "MSWindows*.cpp")
|
2012-06-10 16:50:54 +00:00
|
|
|
elseif (APPLE)
|
2014-02-28 12:36:45 +00:00
|
|
|
file(GLOB headers "OSX*.h")
|
2014-02-28 13:06:25 +00:00
|
|
|
file(GLOB sources "OSX*.cpp" "OSX*.m")
|
2012-06-10 16:50:54 +00:00
|
|
|
elseif (UNIX)
|
2014-02-28 12:36:45 +00:00
|
|
|
file(GLOB headers "XWindows*.h")
|
|
|
|
file(GLOB sources "XWindows*.cpp")
|
2014-02-26 17:46:02 +00:00
|
|
|
endif()
|
2012-06-10 16:50:54 +00:00
|
|
|
|
2014-02-26 17:46:02 +00:00
|
|
|
if (SYNERGY_ADD_HEADERS)
|
|
|
|
list(APPEND sources ${headers})
|
2012-06-10 16:50:54 +00:00
|
|
|
endif()
|
|
|
|
|
2014-02-26 17:46:02 +00:00
|
|
|
include_directories(
|
2014-02-28 12:36:45 +00:00
|
|
|
../
|
2012-06-10 16:50:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if (UNIX)
|
2014-02-26 17:46:02 +00:00
|
|
|
include_directories(
|
2012-06-10 16:50:54 +00:00
|
|
|
../../..
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2013-08-30 14:38:43 +00:00
|
|
|
if (APPLE)
|
|
|
|
list(APPEND inc
|
|
|
|
/System/Library/Frameworks
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2012-06-10 16:50:54 +00:00
|
|
|
include_directories(${inc})
|
2014-02-26 17:46:02 +00:00
|
|
|
add_library(platform STATIC ${sources})
|
2013-09-24 16:29:51 +00:00
|
|
|
target_link_libraries(platform client ${libs})
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
if (UNIX)
|
2013-09-25 10:50:11 +00:00
|
|
|
target_link_libraries(platform io net ipc synergy client ${libs})
|
2012-06-10 16:50:54 +00:00
|
|
|
endif()
|
2013-08-30 14:38:43 +00:00
|
|
|
|
|
|
|
if (APPLE)
|
2014-02-26 17:46:02 +00:00
|
|
|
find_library(COCOA_LIBRARY Cocoa)
|
2013-08-30 14:38:43 +00:00
|
|
|
target_link_libraries(platform ${COCOA_LIBRARY})
|
|
|
|
endif()
|