加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMakeLists.txt 609 Bytes
一键复制 编辑 原始数据 按行查看 历史
cmake_minimum_required( VERSION 2.6 )
project( algorithm )
include_directories( "include" )
include_directories( "." )
if( MSVC )
include_directories( "msvc" )
endif()
#add_executable(word_seg "src/word_seg_demo.cpp")
#add_executable(astar "src/astar_demo.cpp")
file( GLOB APP_SOURCES src/*.cpp )
SET( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /FI\"msvc/alg_vs.h\"" )
message( ${CMAKE_CXX_FLAGS} )
foreach( appsourcefile ${APP_SOURCES} )
get_filename_component( demo_name ${appsourcefile} NAME_WE )
add_executable( ${demo_name} ${appsourcefile} )
endforeach( appsourcefile ${APP_SOURCES} )
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化