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?