可执行文件的最小 CMakeLists.txt

这是从 main.cpp 构建名为 myproject 的可执行文件的最小 CMakeLists.txt:

CMakeLists.txt
cmake_minimum_required (VERSION 2.8.11)
project (MyProject)
add_executable (myproject main.cpp)

Check out similar posts by category: CMake