CMakeProject tree#projectโโโ CMakeLists.txtโโโ main.cppCopyCMakeLists.txt#CMakeLists.txtcmake_minimum_required(VERSION 3.15) project(example LANGUAGES CXX) add_executable(example main.cpp)CopyBuild#NinjaMakefilecmake -G Ninja -S . -B buildCopycmake --build buildCopycmake -S . -B buildCopycmake --build build -j 4Copycmake --install buildCopy