1. 由浅入深第一个CMakeLists.txt
文件tree
root@DYF:/mnt/g/src/C++/C-plus-study/ObjectOriented_chapter9/Constructor_1002# tree
.
├── CMakeLists.txt
├── Person.h
└── main.cpp
编写最简单的CMakeLists.txt
# specify cmake minimum version
cmake_minimum_required(VERSION 2.6)
# specify source file dir
aux_source_directory(. DIR_SRCS)
# specify header file dir
include_directories(.)
# specify executable file
add_executable(main ${DIR_SRCS})
执行:
cmake .
make
./main