mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-12 18:40:28 +01:00
da0d1b859a
without this, compilation failed with /usr/bin/ld: cannot find -lcppzmq
41 lines
932 B
CMake
41 lines
932 B
CMake
cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
|
|
|
|
project(cppzmq-examples CXX)
|
|
|
|
# place binaries and libraries according to GNU standards
|
|
|
|
include(GNUInstallDirs)
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR})
|
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR})
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR})
|
|
|
|
find_package(Threads)
|
|
find_package(cppzmq)
|
|
|
|
add_executable(
|
|
pubsub_multithread_inproc
|
|
pubsub_multithread_inproc.cpp
|
|
)
|
|
target_link_libraries(
|
|
pubsub_multithread_inproc
|
|
PRIVATE cppzmq ${CMAKE_THREAD_LIBS_INIT}
|
|
)
|
|
|
|
add_executable(
|
|
hello_world
|
|
hello_world.cpp
|
|
)
|
|
target_link_libraries(
|
|
hello_world
|
|
PRIVATE cppzmq ${CMAKE_THREAD_LIBS_INIT}
|
|
)
|
|
|
|
add_executable(
|
|
multipart_messages
|
|
multipart_messages.cpp
|
|
)
|
|
target_link_libraries(
|
|
multipart_messages
|
|
PRIVATE cppzmq ${CMAKE_THREAD_LIBS_INIT}
|
|
)
|