码迷,mamicode.com
首页 > 其他好文 > 详细

Cmake的使用

时间:2019-12-07 10:24:37      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:star   cmak   director   toc   cmake   路径   port   com   tar   

官网教程:https://cmake.org/cmake/help/latest/guide/tutorial/index.html#

永远需要记住,第一手资料永远是重要的!

A Basic Starting Point (Step 1)

一个简单的起点

对于一个简单的项目,一个三行的CMakeLists.txt文件就能搞定。创建一个CMakeLists.txt文件在项目路径下。CMakeLists.txt内容如下:

cmake_minimum_required(VERSION 3.10)

# set the project name
project(Tutorial)

# add the executable
add_executable(Tutorial tutorial.cxx)

Note that this example uses lower case commands in the CMakeLists file. Upper, lower, and mixed case commands are supported by CMake. The source code for tutorial.cxx is provided in the Step1 directory and can be used to compute the square root of a number.

这是官网的原话,也是其他中文教程里翻译的内容。即第一个例子是计算平方根的。

 

 

Cmake的使用

标签:star   cmak   director   toc   cmake   路径   port   com   tar   

原文地址:https://www.cnblogs.com/juluwangshier/p/11789697.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!