CMake常用語法

2021-09-24 16:54:25 字數 622 閱讀 7540

# cmake 最低版本號要求

cmake_minimum_required (version 2.8)

# 專案資訊

project (demo)

# 查詢當前目錄下的所有原始檔,並將名稱儲存到 dir_srcs 變數

aux_source_directory(. dir_srcs)

# 新增標頭檔案搜尋目錄

# project_source_dir為包含project(***)的最近乙個cmakelists.txt檔案所在的資料夾

include_directories ("$/subdir")

# 列印訊息

message(status "project directory: $")

# 新增子目錄subdir下的cmakelists.txt

add_subdirectory(subdir)

# 新增鏈結庫

target_link_libraries(demo lib***)

# 指定生成為鏈結庫

add_library (lib*** $)

# 指定生成為可執行檔案

add_executable(demo $)

cmake常用語法介紹

使用cmake編譯程式 cd path of cmakelist.txt cmake make make install 語法 1.link directories 查詢動態庫路徑,相當於makefile的 l選項,且該方法必須在add library和add executable之前 2.鏈結靜態...

cmake常用語法參考

cmake常用語法參考 利用cmake來構建c 工程是乙個非常方便的選擇,尤其是依賴的庫比較多的時候,或者工程比較大的時候都非常方便,這裡記錄一些cmake常用的語法,key words cmake beijing,2019 code agile pioneer 2.cmake 執行命令 3.cma...

mysql常用語法 MySQL常用語法

更新資料 update 表名 set 健名 更改的值 where 建 刪除資料 delete from 表名 where 索引 create index 索引名稱 on 表名 鍵名 建立試圖 create view 檢視名 鍵,鍵 as select matchno,abs won lost fro...