mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-13 10:52:56 +01:00
cmake: Streamline integration allowing config of CMAKE_*_OUTPUT_DIRECTORY
Setting EXECUTABLE_OUTPUT_PATH and LIBRARY_OUTPUT_PATH variables is deprecated
This commit is contained in:
parent
25f47ccbf8
commit
b1d4955065
@ -35,6 +35,8 @@ if(COMPILER_SUPPORTS_C11)
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu11")
|
||||
endif()
|
||||
|
||||
include (ZMQSupportMacros)
|
||||
|
||||
if(NOT MSVC)
|
||||
# clang 6 has a warning that does not make sense on multi-platform code
|
||||
CHECK_CXX_COMPILER_FLAG("-Wno-tautological-constant-compare" CXX_HAS_TAUT_WARNING)
|
||||
@ -549,8 +551,17 @@ if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
||||
FORCE)
|
||||
endif ()
|
||||
|
||||
set (EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/bin)
|
||||
set (LIBRARY_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/lib)
|
||||
#-----------------------------------------------------------------------------
|
||||
# output directories
|
||||
|
||||
zmq_set_with_default(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${ZeroMQ_BINARY_DIR}/bin")
|
||||
if(UNIX)
|
||||
set(zmq_library_directory "lib")
|
||||
else()
|
||||
set(zmq_library_directory "bin")
|
||||
endif()
|
||||
zmq_set_with_default(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${ZeroMQ_BINARY_DIR}/${zmq_library_directory}")
|
||||
zmq_set_with_default(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${ZeroMQ_BINARY_DIR}/lib")
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# platform specifics
|
||||
|
5
builds/cmake/Modules/ZMQSupportMacros.cmake
Normal file
5
builds/cmake/Modules/ZMQSupportMacros.cmake
Normal file
@ -0,0 +1,5 @@
|
||||
macro (zmq_set_with_default var value)
|
||||
if (NOT ${var})
|
||||
set(${var} "${value}")
|
||||
endif ()
|
||||
endmacro ()
|
Loading…
Reference in New Issue
Block a user