diff options
Diffstat (limited to 'statsd/CMakeLists.txt')
| -rw-r--r-- | statsd/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/statsd/CMakeLists.txt b/statsd/CMakeLists.txt new file mode 100644 index 0000000..73dbf68 --- /dev/null +++ b/statsd/CMakeLists.txt @@ -0,0 +1,16 @@ +find_package(Boost COMPONENTS system program_options REQUIRED) + +add_executable(statsd + main.cpp + stats.hpp stats.cpp +) + +target_link_libraries(statsd + PRIVATE Boost::boost + PRIVATE Boost::program_options + PRIVATE Boost::system + PRIVATE cmix-protobuf + PRIVATE cmix-network + PRIVATE cmix-common + PRIVATE log +)
\ No newline at end of file |
