mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-09 21:25:55 +08:00
#6151 Add optional cmake install
This commit is contained in:
@@ -17,6 +17,8 @@
|
||||
cmake_minimum_required (VERSION 3.4)
|
||||
project (synergy-core C CXX)
|
||||
|
||||
option (SYNERGY_CORE_INSTALL "Enable Synergy Core install (Mac and Linux)" OFF)
|
||||
|
||||
set (CMAKE_CXX_STANDARD 14)
|
||||
set (CMAKE_CXX_EXTENSIONS OFF)
|
||||
set (CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
@@ -17,8 +17,10 @@ add_executable(synergy-core main.cpp)
|
||||
target_link_libraries(synergy-core
|
||||
arch base client common io mt net ipc platform server core ${libs} ${OPENSSL_LIBS})
|
||||
|
||||
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
install (TARGETS synergy-core DESTINATION ${SYNERGY_BUNDLE_BINARY_DIR})
|
||||
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
||||
install (TARGETS synergy-core DESTINATION bin)
|
||||
if (SYNERGY_CORE_INSTALL)
|
||||
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
install (TARGETS synergy-core DESTINATION ${SYNERGY_BUNDLE_BINARY_DIR})
|
||||
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
||||
install (TARGETS synergy-core DESTINATION bin)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user