CMake的簡單應用教程

2021-08-20 05:08:33 字數 578 閱讀 6151

以編寫helloworld為例:

這是我的資料夾(名1)下的檔案,build資料夾是後面使用mkdir命令建立的。

其中main.cpp:

#include using namespace std;

int main())

#生成可執行程式 語法:add_executable(可執行程式名 要編譯的cpp)

#add_executable(helloworld main.cpp)

然後執行;

$mkdir build

$cd build

$cmake ..

$make

$./helloworld

build資料夾生成這些檔案:

執行結束。

當包括很多標頭檔案,子檔案的時候可以參考:

CMake 簡單教程

sudo add apt repository ppa george edison55 cmake 3.x sudo apt get update sudo apt get install cmake更多變數查詢位址 project的名稱 project caffe framework 最低版本限制...

CMake使用教程

編寫的測試的檔案目錄如下 cmaketest makelists.txt config.h.in main.cpp math makelists.txt mathfunction.cpp mathfunction.h下面為每個檔案中的內容,函式的功能是分別利用自定義的庫和標準庫實現求乙個數的冪次方 ...

工具 cmake教程

檔名稱 cmakelists.txt 檔案內容 乙個總工程的根目錄 宣告要求的 cmake 最低版本 cmake minimum required version 2.8 宣告乙個 cmake 工程 project robotics 設定編譯模式 set cmake build type debug...