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.
|
cmake_minimum_required (VERSION 2.6)
|
|
project (PROJECT_GRAPH)
|
|
|
|
set (CXX_FLAGS "-std=c++11")
|
|
add_definitions(${CXX_FLAGS})
|
|
|
|
# set (CMAKE_CXX_COMPILER "/usr/bin/g++-4.9.2")
|
|
# set (CMAKE_CXX_COMPILER "/usr/bin/clang++-3.6.0")
|
|
|
|
add_subdirectory (test)
|