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.
16 lines
357 B
16 lines
357 B
12 years ago
|
cmake_minimum_required (VERSION 2.6)
|
||
|
|
||
|
project(graph)
|
||
|
|
||
|
|
||
|
set(CMAKE_CXX_COMPILER "/usr/lib/colorgcc/bin/g++")
|
||
|
# set(CMAKE_CXX_COMPILER "/usr/bin/clang")
|
||
|
|
||
|
set (CXX_FLAGS "-Wall -Wextra -pedantic -Weffc++ -Wshadow "
|
||
|
"-ggdb -std=c++0x -D_GLIBCXX_PROFILE ")
|
||
|
add_definitions( ${CXX_FLAGS} )
|
||
|
|
||
|
# include_directories(.)
|
||
|
|
||
|
add_executable(graph main.cpp)
|