How to build examples in CppKafka?

49 Views Asked by At

I am investigating CppKafka library https://github.com/mfontanini/cppkafka

I want to build executables in cppkafka/examples/

My actions:

cd cppkafka/build
cmake ..
make -j

I was adding debug output in

# cppkafka/examples/CMakeLists.txt

message("XXXX123")
add_custom_target(examples)
macro(create_example example_name)
message("ZZZ")

I can see the output. But I don't see any executables in build directory. Where can I find binaries?

0

There are 0 best solutions below