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.

13 lines
339 B

8 years ago
cmake_minimum_required (VERSION 2.6)
project (PROJECT_GRAPH_BROWSER)
set (CXX_FLAGS "-std=c++14")
add_definitions(${CXX_FLAGS})
set (CMAKE_CXX_COMPILER "/usr/bin/g++-5.1.0")
# set (CMAKE_CXX_COMPILER "/usr/bin/clang++-3.6.0")
add_executable (graph_browser main.cpp)
include_directories(graph/lib/)
#target_link_libraries(test_bin gcov)