diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2016-12-05 16:34:37 +0100 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2016-12-05 17:16:45 +0100 |
| commit | b5688d16b0920aeed3d945fd136a51fe31dfbe24 (patch) | |
| tree | 7287878892af7dab66b63085859e55d7bc6b9453 /statsd/CMakeLists.txt | |
| parent | 16c28db384adbe61034eb8a2267cd6a886ffd72f (diff) | |
| download | cmix-b5688d16b0920aeed3d945fd136a51fe31dfbe24.tar.gz cmix-b5688d16b0920aeed3d945fd136a51fe31dfbe24.tar.bz2 cmix-b5688d16b0920aeed3d945fd136a51fe31dfbe24.zip | |
added (untested) statsd for the cmake network.
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 |
