创建项目时,我的CMakeLists.txt
文件如下所示:
cmake_minimum_required(VERSION 2.6)
project(testttt)
add_executable(testttt main.cpp)
install(TARGETS testttt RUNTIME DESTINATION bin)
但我希望它看起来像这样:
cmake_minimum_required(VERSION 2.6)
project(testttt)
add_executable(testttt main.cpp)
install(TARGETS testttt RUNTIME DESTINATION bin)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
所以我默认支持C ++ 11。我该怎么做?
答案 0 :(得分:1)
KDevelop项目模板使用Grantlee模板引擎实现。 Here is手册如何添加自己的模板。
内置模板位于/share/apps/kdevfiletemplates/templates
,您可以使用" Basic C ++ project`作为示例。