标签:fun conf func lis tor aries efi configure bsp
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@
标签:fun conf func lis tor aries efi configure bsp
原文地址:https://www.cnblogs.com/lewis-18576760061/p/9827290.html