mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-13 18:55:11 +01:00
63f81e40d6
Solution: build tests within cppzmq build, and add separate demo
24 lines
302 B
CMake
24 lines
302 B
CMake
cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
|
|
|
|
project(cppzmq-demo CXX)
|
|
|
|
find_package(cppzmq)
|
|
|
|
enable_testing()
|
|
add_executable(
|
|
demo
|
|
main.cpp
|
|
)
|
|
|
|
target_link_libraries(
|
|
demo
|
|
libzmq
|
|
)
|
|
|
|
add_test(
|
|
NAME
|
|
demo
|
|
COMMAND
|
|
${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}/demo
|
|
)
|