
CMAKE
seamanj
这个作者很懒,什么都没留下…
展开
-
cmake cannot find eigen3 in ubuntu
the reason is missing EIGEN3_INCLUDE_DIRthen we need to define it in cmakelist.txt fileadd a line like this in this file:Set(EIGEN3_INCLUDE_DIR "/usr/local/include/eigen-eigen-b30b87236a1b")原创 2016-01-29 02:40:02 · 7775 阅读 · 0 评论 -
install opencv 4.1.1 from source on windows,在其他项目中用cmake去引用
https://cv-tricks.com/how-to/installation-of-opencv-4-1-0-in-windows-10-from-source/主要步骤在上面链接里关键是编译完了, 右键点出INSTALL, 然后点build进行安装安装完后, 界面类似这样到时候在其他项目中, 只需要把OpenCV_DIR设置为安装的目录即可...原创 2019-08-15 20:19:50 · 257 阅读 · 0 评论 -
upgrade cmake-gui version
download cmake source code./configure --qt-guimake -j12原创 2019-06-12 16:25:48 · 865 阅读 · 0 评论 -
ubuntu下pkgconfig的搜索路径
/usr/lib/pkgconfig/usr/local/lib/pkgconfig原创 2019-05-07 02:25:48 · 1308 阅读 · 0 评论 -
cmake设置了CMAKE_MODULE_PATH,include找不到文件
设置了CMAKE_MODULE_PATH后, 如何要包含某一文件include(CudaComputeTargetFlags) #注意这里不需要加.cmake后缀, 否则会找不到文件https://stackoverflow.com/questions/3249459/for-the-cmake-include-command-what-is-the-difference-between-a-...原创 2019-05-03 04:06:12 · 5995 阅读 · 0 评论 -
cmake and cmake-gui读的环境变量不一致
在配OpenNI2的时候, 导出变量到~/.bashrc后, 发现cmake和cmake-gui读出的变量不一致,仔细一看cmake读的变量是从~/.bashrc文件里面的读的cmake-gui是从~/.profile文件里面读的可以在cmake文件里面加入execute_process( COMMAND ${CMAKE_COMMAND} -E environment)看细节...原创 2019-05-02 21:37:46 · 1077 阅读 · 0 评论 -
如何写CmakeList.txt文件使在qtcreator里面显示源文件
cmake_minimum_required(VERSION 3.5)FILE(GLOB incs include/pcl/gpu/kinfu/*.h*)FILE(GLOB srcs src/*.cpp src/*.h*)FILE(GLOB cuda src/cuda/*.cu src/cuda/*.h*)add_custom_target(whatever SOURCES ${incs}...原创 2018-05-22 19:28:15 · 2371 阅读 · 0 评论 -
使用cmake建立工程链接OPENNI2
main.cpp/*************************OpenNI2 Deep, Color and Fusion ImageAuthor: Xin Chen, 2013.2Blog: http://blog.youkuaiyun.com/chenxin_130*************************/#include #include #inclu原创 2017-10-25 04:04:51 · 1947 阅读 · 0 评论 -
CMake Useful Variables/Logging Useful Variables
# ------------------------- Begin Generic CMake Variable Logging ------------------# /* C++ comment style not allowed */# if you are building in-source, this is the same as CMAKE_SOURCE_DIR, othe转载 2017-10-25 02:47:07 · 272 阅读 · 0 评论 -
qtcreator4.4.1中cmake 与cmake3.5.1本身generate出来的setting是有区别的解决方法
虽然他们都是用的同一个程序,但是生成出来的结果却不一样,设置也不一样,解决方法1. 要么人为手动加每一个setting 2. 先自己用cmake编一次,建立一个build文件夹 然后用qtcreatorProjects->build & run-> right click -> import Existing Build ... 选择刚才的build文件夹3原创 2017-10-24 23:39:26 · 1244 阅读 · 0 评论 -
How package finding works
The find_package() command will look in the module path for Find.cmake, which is the typical way for finding libraries. First CMake checks all directories in ${CMAKE_MODULE_PATH}, then it looks in i转载 2017-10-24 01:15:56 · 204 阅读 · 0 评论 -
how to install cmake
Either use a PPA or compile it yourself:Installation by a PPA (Upgrade to 3.2)sudo apt-get install software-properties-commonsudo add-apt-repository ppa:george-edison55/cmake-3.xsudo apt-g原创 2016-02-15 20:27:14 · 1426 阅读 · 0 评论 -
how to install cmake-gui on ubuntu
sudo apt-get install cmake-qt-gui原创 2016-02-13 08:25:06 · 2251 阅读 · 0 评论 -
how to cmake to build directory
cmake -B./build -H.原创 2016-02-13 01:16:42 · 886 阅读 · 0 评论 -
cmake list all directories
#list all include directoriesGET_DIRECTORY_PROPERTY(output INCLUDE_DIRECTORIES)foreach(dir ${output}) message(${dir})endforeach()原创 2019-08-22 07:21:26 · 223 阅读 · 0 评论