barrier/src/gui/CMakeLists.txt

68 lines
2.1 KiB
CMake
Raw Normal View History

2016-12-19 17:41:01 +00:00
cmake_minimum_required (VERSION 3.4)
2017-01-23 23:49:40 +00:00
find_package (Qt5 COMPONENTS Core Widgets Network)
2016-12-19 17:41:01 +00:00
set (CMAKE_AUTOMOC ON)
set (CMAKE_AUTORCC ON)
set (CMAKE_AUTOUIC ON)
set (CMAKE_INCLUDE_CURRENT_DIR ON)
file (GLOB LEGACY_GUI_SOURCE_FILES src/*.cpp src/*.h)
2017-02-09 19:57:13 +00:00
file (GLOB LEGACY_GUI_UI_FILES src/*.ui)
file (GLOB LEGACY_ACTIVATION_FILES src/*Activation* src/*License*)
file (GLOB LEGACY_ZEROCONF_FILES src/Zeroconf*)
if (SYNERGY_ENTERPRISE)
list (REMOVE_ITEM LEGACY_GUI_SOURCE_FILES ${LEGACY_ACTIVATION_FILES})
list (REMOVE_ITEM LEGACY_GUI_UI_FILES ${LEGACY_ACTIVATION_FILES})
list (REMOVE_ITEM LEGACY_GUI_SOURCE_FILES ${LEGACY_ZEROCONF_FILES})
endif ()
2016-12-19 17:41:01 +00:00
2017-02-09 20:05:36 +00:00
if (WIN32)
2017-03-09 14:32:41 +00:00
set (LEGACY_GUI_RC_FILES res/win/Synergy.rc)
2017-02-09 20:05:36 +00:00
endif()
2017-02-09 15:57:10 +00:00
add_executable (synergy WIN32
${LEGACY_GUI_SOURCE_FILES}
${LEGACY_GUI_UI_FILES}
2017-02-09 20:05:36 +00:00
${LEGACY_GUI_RC_FILES}
res/Synergy.qrc
2016-12-19 17:41:01 +00:00
)
2017-03-09 14:32:41 +00:00
include_directories (./src)
2017-03-08 18:20:18 +00:00
target_link_libraries (synergy shared)
2016-12-19 17:41:01 +00:00
if (NOT SYNERGY_ENTERPRISE)
2016-12-19 17:41:01 +00:00
if (WIN32)
include_directories ($ENV{BONJOUR_SDK_HOME}/Include)
if (CMAKE_SIZEOF_VOID_P EQUAL 8)
find_library (DNSSD_LIB dnssd.lib
HINTS ENV BONJOUR_SDK_HOME
PATH_SUFFIXES "Lib/x64")
else()
find_library (DNSSD_LIB dnssd.lib
HINTS ENV BONJOUR_SDK_HOME
PATH_SUFFIXES "Lib/Win32")
endif()
2017-03-08 18:20:18 +00:00
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
target_link_libraries (synergy dns_sd)
2016-12-19 17:41:01 +00:00
endif()
endif()
2016-12-19 17:41:01 +00:00
target_link_libraries (synergy Qt5::Core Qt5::Widgets Qt5::Network)
target_compile_definitions (synergy PRIVATE -DSYNERGY_VERSION_STAGE="${SYNERGY_VERSION_STAGE}")
target_compile_definitions (synergy PRIVATE -DSYNERGY_REVISION="${SYNERGY_REVISION}")
if (WIN32)
if (NOT SYNERGY_ENTERPRISE)
2017-03-09 14:32:41 +00:00
target_link_libraries (synergy ${DNSSD_LIB})
endif ()
2017-02-08 12:40:34 +00:00
set_target_properties (synergy PROPERTIES LINK_FLAGS "/NODEFAULTLIB:LIBCMT")
endif()
2017-03-07 14:10:24 +00:00
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
install (TARGETS synergy DESTINATION ${SYNERGY_BUNDLE_BINARY_DIR})
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
install (TARGETS synergy DESTINATION bin)
2017-03-07 14:10:24 +00:00
endif()