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
375 B
13 lines
375 B
cmake_minimum_required (VERSION 2.6)
|
|
project (PROJECT_GRAPH_BROWSER)
|
|
|
|
set (CXX_FLAGS "-std=c++14 -ggdb")
|
|
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 graph_browser.cpp)
|
|
include_directories(graph/lib/)
|
|
target_link_libraries(graph_browser ncurses menu)
|