Skip to content

Commit

Permalink
CmakeLists added
Browse files Browse the repository at this point in the history
  • Loading branch information
incebellipipo committed Oct 23, 2017
1 parent cb2630f commit f308ae0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
cmake_minimum_required (VERSION 2.8.11)
project (a-star)

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

include_directories(source)
add_library(a-star source/AStar.cpp)

add_executable(main main.cpp)
target_link_libraries(main a-star)

0 comments on commit f308ae0

Please sign in to comment.