C:\\blah\\duh\\bin\\Android>\"C:\\Program Files (x86)\\CMake\\bin\\cmake.exe\" --build . --target SysTest --use-stderr -- -j 8
I have this a
If I have
add_executable(hello hello.cpp)
add_executable(goodbye goodbye.cpp)
then CMake creates 'build targets' for each executable. It also creates other build targets, such as the 'all' build target, which builds everything.
By default, if the target is not specified, the 'all' target is executed, meaning both hello and goodbye are built.
You can specify the target to build if you only want to build one of them.