首页 > 学院 > 开发设计 > 正文

CmakeLists实践(1)

2019-11-11 05:49:32
字体:
来源:转载
供稿:网友

## 只有1个源文件 ##

文件结构: —-main.cpp —-CMakeLists.txt

main.cpp,代码如下:

#include<iostream>using namespace std;int main(){ int base,exponent; cin>>base>>exponent; cout<<base*exponent<<endl; return 0;}

CmakeLists.txt的编写,代码如下:

# CMake 最低版本要求cmake_minimum_required (VERSION 2.8)# 项目名称PRoject (Demo1)# 指定生成目标add_executable(Demo main.cpp)
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表