文章目录 tutorial_3/CMakeLists.txt tutorial_3/src/CMakeLists.txt cmake_tutorial/tutorial_3/src/hello.cpp tutorial_3/src/hello.h 根目录的 CMakeLists.txt src 目录的 CMakeLists.txt hello.cpp 和 hello.h 构建过程 总结 tutorial_3/CMakeLists.txt cmake_minimum_required(VERSION 2.8.4) project(tutorial_3) add_subdirectory(src) tutorial_3/src/CMakeLists.txt <