日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
快速上手自動化構(gòu)建系統(tǒng)CMake

CMake 是一個跨平臺的自動化構(gòu)建系統(tǒng),它使用一個名為 CMakeLists.txt 的文件來描述構(gòu)建過程,可以產(chǎn)生標準的構(gòu)建文件,如 Unix 的 Makefile 或Windows Visual C++ 的 projects/workspaces 。

成都創(chuàng)新互聯(lián)公司長期為成百上千家客戶提供的網(wǎng)站建設(shè)服務(wù),團隊從業(yè)經(jīng)驗10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為鹽邊企業(yè)提供專業(yè)的網(wǎng)站制作、成都網(wǎng)站制作,鹽邊網(wǎng)站改版等技術(shù)服務(wù)。擁有10年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。

例1:Hello World

源代碼只有一個文件HelloWorld.cpp

#include 

int main(int argc, char *argv[]){
  std::cout "Hello World!" return 0;
}
123456

CMakeLists.txt也只有三行而已(使用cmake管理項目的過程,也就是編寫CMakeLists.txt的過程)

cmake_minimum_required(VERSION 2.8.9)
project (hello)
add_executable(hello helloworld.cpp)
123

第一行用于指定cmake最低版本 第二行指定項目名稱(這個名稱是任意的) 第三行指定編譯一個可執(zhí)行文件,hello是第一個參數(shù),表示生成可執(zhí)行文件的文件名(這個文件名也是任意的),第二個參數(shù)helloworld.cpp則用于指定源文件。

如果您電腦上已經(jīng)安裝了cmake,那么我們就已經(jīng)完事具備了。 第一步,用cmake生成Makefile文件

  • 注:cmake命令后邊跟的就是CMakelist.txt所在的目錄,這個目錄不必是當(dāng)前目錄,你也可以新建一個build目錄或者其他名字的目錄來生成build文件,實際項目中也都是這么做的,這樣代碼會很干凈也便于git管理.
    第二步,make編譯程序 && 編譯成功 通過上一步我們發(fā)現(xiàn),當(dāng)前目錄下已經(jīng)多出了幾個文件,特別是Makefile文件
    第三步,測試程序 到此,第一個用cmake管理的程序,成功了!

例2: 包含目錄結(jié)構(gòu)的項目

在例1中完全體現(xiàn)不出cmake的任何優(yōu)勢,用g++一行可以解決的問題我們繞了一大圈。可是cmake本來的優(yōu)勢就是管理龐大的項目的。 這個例子用最小的程序來體現(xiàn)一個帶目錄結(jié)構(gòu)的項目。其中有源文件目錄,頭文件目錄。

cmake_minimum_required(VERSION 2.8.9)
project(directory_test)

#Bring the headers, such as Student.h into the project
include_directories(include)

#Can manually add the sources using the set command as follows:
#set(SOURCES src/mainapp.cpp src/Student.cpp)

#However, the file(GLOB...) allows for wildcard additions:
file(GLOB SOURCES "src/*.cpp")

add_executable(testStudent ${SOURCES})
12345678910111213

和第一個例子比起來,CMakelist.txt有如下改變:

  1. 使用include_directories() 包含頭文件目錄
  2. 使用set(SOURCES … ) 或GLOB (or GLOB_RECURSE) 設(shè)置源文件SOURCES
  3. add_executable 使用變量SOURCES ,而不是具體的文件名 接下來的步驟就和例子1一樣了,不同之處是我們新建了一個build目錄來存儲編譯中間文件,如下圖:
    下一步make,然后運行結(jié)果如下:

例3:動態(tài)庫編譯(.so)

有了前兩個例子的基礎(chǔ),接下來的例子我們只需要看一下目錄結(jié)構(gòu)和CMakelist.txt. CMakelist.txt如下:

project(directory_test)
set(CMAKE_BUILD_TYPE Release)

#Bring the headers, such as Student.h into the project
include_directories(include)

#However, the file(GLOB...) allows for wildcard additions:
file(GLOB SOURCES "src/*.cpp")

#Generate the shared library from the sources
add_library(testStudent SHARED ${SOURCES})

#Set the location for library installation -- i.e., /usr/lib in this case
# not really necessary in this example. Use "sudo make install" to apply
install(TARGETS testStudent DESTINATION /usr/lib)
123456789101112131415

兩個重要變化:

  1. 我們不再使用add_executable() 而是使用add_library()
  2. install 指定安裝目錄,執(zhí)行sudo make install時動態(tài)庫將被安裝在/usr/lib目錄 如前兩個例子,我們依次執(zhí)行,cmake make編譯結(jié)果如下:

例4:靜態(tài)庫編譯 (.a)

基于例3,我們編譯一個靜態(tài)庫 將CMakeList.txt修改為如下所示:

cmake_minimum_required(VERSION 2.8.9)
project(directory_test)
set(CMAKE_BUILD_TYPE Release)

#Bring the headers, such as Student.h into the project
include_directories(include)

#However, the file(GLOB...) allows for wildcard additions:
file(GLOB SOURCES "src/*.cpp")

#Generate the static library from the sources
add_library(testStudent STATIC ${SOURCES})

#Set the location for library installation -- i.e., /usr/lib in this case
# not really necessary in this example. Use "sudo make install" to apply
install(TARGETS testStudent DESTINATION /usr/li
12345678910111213141516

可以看出,只需將add_library中的shared改為static即可。 編譯結(jié)果如下:

例5:使用靜態(tài)庫或動態(tài)庫

下邊我們來測試一下我們例3的結(jié)果,代碼和CMakeList.txt如下:

#include"Student.h"

int main(int argc, char *argv[]){
  Student s("Joe");
  s.display();
  return 0;
}
1234567
cmake_minimum_required(VERSION 2.8.9)
project (TestLibrary)

#For the shared library:
set ( PROJECT_LINK_LIBS libtestStudent.so )
link_directories( ~/exploringBB/extras/cmake/studentlib_shared/build )

#For the static library:
#set ( PROJECT_LINK_LIBS libtestStudent.a )
#link_directories( ~/exploringBB/extras/cmake/studentlib_static/build )

include_directories(~/exploringBB/extras/cmake/studentlib_shared/include)

add_executable(libtest libtest.cpp)
target_link_libraries(libtest ${PROJECT_LINK_LIBS} )
123456789101112131415

結(jié)果如下(CMakeList.txt中的目錄要根據(jù)自己的情況改一下): 成功了?。?/p>
網(wǎng)頁名稱:快速上手自動化構(gòu)建系統(tǒng)CMake
網(wǎng)頁鏈接:http://m.5511xx.com/article/dpgegee.html