jdanekrh commented on a change in pull request #288: Refactor cmake to use
modern feature
URL: https://github.com/apache/qpid-dispatch/pull/288#discussion_r259475582
##########
File path: src/CMakeLists.txt
##########
@@ -116,24 +103,42 @@ endif()
# strict aliasing optimization is only available in GCC
if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
- set_property(
- SOURCE python_embedded.c router_pynode.c
- PROPERTY COMPILE_FLAGS -Wno-strict-aliasing
+ set_property(
+ SOURCE python_embedded.c router_pynode.c
+ PROPERTY COMPILE_FLAGS -Wno-strict-aliasing
)
endif (CMAKE_C_COMPILER_ID STREQUAL "GNU")
add_library(qpid-dispatch SHARED ${qpid_dispatch_SOURCES})
-if(NOT LIBWEBSOCKETS_FOUND)
-target_link_libraries(qpid-dispatch ${Proton_Core_LIBRARIES}
${Proton_Proactor_LIBRARIES} ${pthread_lib} ${rt_lib} ${dl_lib}
${PYTHON_LIBRARIES})
-else()
-target_link_libraries(qpid-dispatch ${Proton_Core_LIBRARIES}
${Proton_Proactor_LIBRARIES} ${pthread_lib} ${rt_lib} ${dl_lib}
${PYTHON_LIBRARIES} ${LIBWEBSOCKETS_LIBRARIES})
+target_link_libraries(qpid-dispatch
+ PUBLIC
+ PythonLibs::PythonLibs
+ Threads::Threads
+ Glibc::dl
+ Glibc::rt
+ Proton::Proactor)
+
+target_include_directories(qpid-dispatch
+ PRIVATE
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ PUBLIC
+ ${CMAKE_SOURCE_DIR}/include)
+
+if(LIBWEBSOCKETS_FOUND)
+ target_link_libraries(qpid-dispatch PUBLIC WebSockets::WebSockets)
endif()
-set_target_properties(qpid-dispatch PROPERTIES
- LINK_FLAGS "${CATCH_UNDEFINED}"
- )
+if (CATCH_UNDEFINED)
+ set_target_properties(qpid-dispatch PROPERTIES LINK_FLAGS
"${CATCH_UNDEFINED}")
+endif()
+
install(TARGETS qpid-dispatch
LIBRARY DESTINATION ${QPID_DISPATCH_HOME})
-set (QPID_DISPATCH_LIB "libqpid-dispatch.so")
+if (UNIX)
+ set (QPID_DISPATCH_LIB "libqpid-dispatch.so")
+else()
+ set (QPID_DISPATCH_LIB "qpid-dispatch.dll")
Review comment:
@matlo607 What is the crucial part of the PR that was necessary for your
conan package? I'd be interested in trying to get that working, even given the
restriction to CMake 2.8.12. Conan seems like a really helpful tool.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]