简单CMakeLists.txt文件
Posted 阿汤的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单CMakeLists.txt文件相关的知识,希望对你有一定的参考价值。
#CMakeLists.txt cmake_minimum_required(VERSION 2.8) project(server) #添加包含目录 include_directories(./include) #添加源文件 aux_source_directory(./src DIR_SRC) #添加头文件 SET(HEADERS include/hello.h ) #可执行文件 add_executable( ${PROJECT_NAME} ${DIR_SRC} ${HEADERS})
以上是关于简单CMakeLists.txt文件的主要内容,如果未能解决你的问题,请参考以下文章
如何设置 CMakeLists.txt 文件以启动并运行 xtensor-python 示例代码
cmake - CMakeLists.txt 不在根文件夹中(但包含在源代码中)
将简单的 makefile 转换为 CMakeLists.txt?