Initial commit

master
denes 8 years ago
commit 28f1b35b23
Signed by: denes
GPG Key ID: A7D50EAD42F9FC9F

3
.gitmodules vendored

@ -0,0 +1,3 @@
[submodule "graph"]
path = graph
url = https://github.com/cs0rbagomba/graph.git

@ -0,0 +1,12 @@
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)

@ -0,0 +1 @@
Subproject commit a9b50b6672ae3563985f836da6b7f24ae2f9c375

@ -0,0 +1,10 @@
#include <graph/graph.hpp>
#include <string>
int main(int argc, char* argv[])
{
Graph<std::string> g{ "one", "two", "three" };
return EXIT_SUCCESS;
}
Loading…
Cancel
Save