You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

5 lines
208 B

cmake_minimum_required(VERSION 2.8)
SET(CMAKE_CXX_COMPILER "g++") #设置g++编译器
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
aux_source_directory(./src SRC_LIST)
add_executable(exe ${SRC_LIST})