随笔分类 -  cmake

cmake使用
摘要:参考 https://www.jianshu.com/p/7eeb6f79a275 https://cmake.org/cmake/help/v3.0/manual/cmake-qt.7.html https://blog.csdn.net/wingover/article/details/8272 阅读全文
posted @ 2019-04-17 23:13 流浪侠客 阅读(164) 评论(0) 推荐(0)
摘要:cmake find package 有一套详细的方式. 参考: https://blog.csdn.net/dbzhang800/article/details/6329314 https://blog.csdn.net/bytxl/article/details/50637277 阅读全文
posted @ 2019-04-15 22:59 流浪侠客 阅读(140) 评论(0) 推荐(0)
摘要:前言 cmake能够支持生成代码, 常用于生成版本信息以及文件路径等。 一, 目录结构 ├── CMakeLists.txt├── main.cpp├── path.h.in├── ver.h.in * link:CMakeLists.txt[] - Contains the CMake comma 阅读全文
posted @ 2019-04-15 00:01 流浪侠客 阅读(1060) 评论(0) 推荐(0)
摘要:前言 很多大工程由不同动态库和程序构成,并表现为多级目录和子工程的样式。 一, 目录结构 ├── CMakeLists.txt >[1]├── subbinary│ ├── CMakeLists.txt >[2]│ └── main.cpp├── sublibrary1│ ├── CMakeList 阅读全文
posted @ 2019-04-14 13:17 流浪侠客 阅读(9922) 评论(0) 推荐(1)
摘要:一, 通用范式 cmake_minimum_required(VERSION 2.8) project (hello_cpp11) # 检查c++编译器标志,设置c++11支持变量include(CheckCXXCompilerFlag)CHECK_CXX_COMPILER_FLAG("-std=c 阅读全文
posted @ 2019-04-14 12:52 流浪侠客 阅读(17928) 评论(0) 推荐(1)
摘要:前言 大多数的工程都会添加第三方库。cmake中find_package()函数能够支持查找这些库的路径。 但是必须先为cmake配置查找配置的cmake模块,模块文件名称形如“FindXXX.cmake”,这些 模块文件通常会放到一个指定的目录中,然后将CMAKE_MODULE_PATH变量设置为 阅读全文
posted @ 2019-04-14 11:47 流浪侠客 阅读(21353) 评论(0) 推荐(0)
摘要:前言 cmake支持多种不同方式设置编译器标志: 1.使用 target_compile_definitions()设置编译器标志 2. 使用CMAKE_C_FLAGS和CMAKE_CXX_FLAGS设置编译标志 一, 目录结构 ├── CMakeLists.txt├── main.cpp * li 阅读全文
posted @ 2019-04-14 10:40 流浪侠客 阅读(12611) 评论(0) 推荐(0)
摘要:前言 cmake可以设设置多种编译选项。这些编译选项可以设置编译优化级别以及是否添加debug信息。 一, 目录结构 ├── CMakeLists.txt├── main.cpp * link:CMakeLists.txt[] - Contains the CMake commands you wi 阅读全文
posted @ 2019-04-14 10:01 流浪侠客 阅读(6139) 评论(0) 推荐(0)
摘要:一, 目录结构 ├── cmake-examples.conf├── CMakeLists.txt├── include│ └── installing│ └── Hello.h└── src ├── Hello.cpp └── main.cpp * link:CMakeLists.txt[] - 阅读全文
posted @ 2019-04-14 01:13 流浪侠客 阅读(1590) 评论(0) 推荐(0)
摘要:一, 目录结构 ├── CMakeLists.txt├── include│ └── shared│ └── Hello.h└── src ├── Hello.cpp └── main.cpp * link:CMakeLists.txt[] - Contains the CMake commands 阅读全文
posted @ 2019-04-14 00:36 流浪侠客 阅读(9667) 评论(0) 推荐(0)
摘要:一, 目录结构 ├── CMakeLists.txt├── include│ └── static│ └── Hello.h└── src ├── Hello.cpp └── main.cpp * link:CMakeLists.txt[] - Contains the CMake commands 阅读全文
posted @ 2019-04-13 22:58 流浪侠客 阅读(10621) 评论(0) 推荐(0)
摘要:一, 目录结构 ├── CMakeLists.txt├── include│ └── Hello.h└── src ├── Hello.cpp └── main.cpp * link:CMakeLists.txt[CMakeLists.txt] - Contains the CMake comman 阅读全文
posted @ 2019-04-13 22:28 流浪侠客 阅读(3666) 评论(0) 推荐(0)
摘要:一, 目录结构 ├── CMakeLists.txt├── main.cpp * link:CMakeLists.txt[CMakeLists.txt] - Contains the CMake commands you wish to run* link:main.cpp[main.cpp] - 阅读全文
posted @ 2019-04-13 21:55 流浪侠客 阅读(293) 评论(0) 推荐(0)
摘要:CMAKE_BINARY_DIR : if you are building in-source, this is the same as CMAKE_SOURCE_DIR, otherwise this is the top level directory of your build tree C 阅读全文
posted @ 2019-04-13 20:30 流浪侠客 阅读(372) 评论(0) 推荐(0)