Yes, just a simple Hello World project in C++.
The core logic is encapsulated in a library and used by main().
Also demostrate use of CMake to build an executable with a library dependency.
git clone https://github.com/roalz/cmake-hello-cpp.git
cd cmake-hello-cpp
mkdir build
cd build
cmake ..
make