Skip to content

Commit

Permalink
created the CMake project DrYak#3
Browse files Browse the repository at this point in the history
  • Loading branch information
anilbey committed Jan 24, 2019
1 parent cb22cfb commit c95c221
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
cmake_minimum_required(VERSION 2.8.4)
project(louvain-community)

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++03")

include_directories(./)

add_executable(community
main_community.cpp
graph_binary.h
community.h
community.cpp
graph_binary.cpp
graph.cpp
graph.h
)

add_executable(convert
main_convert.cpp
graph.h
graph.cpp
)

add_executable(hierarchy
main_hierarchy.cpp
)

0 comments on commit c95c221

Please sign in to comment.