首页 > 其他 > 详细

CMake基本工程

时间:2018-10-21 22:21:12      阅读:175      评论:0      收藏:0      [点我收藏+]

CMakeLists.txt

cmake_minimum_required (VERSION 2.6)

project (Test)

set (Test_VERSION_MAJOR 1)

set (Test_VERSION_MINOR 0)

configure_file ( "${PROJECT_SOURCE_DIR}/TestConfig.h.in"

                     "${PROJECT_BINARY_DIR}/TestConfig.h" )

include_directories("${PROJECT_BINARY_DIR}")

add_executable(Test main.cpp)

target_link_libraries (Test MathFunctions)

 

TestConfig.h.in

#define Tutorial_VERSION_MAJOR @Tutorial_VERSION_MAJOR@

#define Tutorial_VERSION_MINOR @Tutorial_VERSION_MINOR@

CMake基本工程

原文:https://www.cnblogs.com/lewis-18576760061/p/9827290.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!