11 lines
224 B
CMake
11 lines
224 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
project(pathfind)
|
|
|
|
#set(CMAKE_BUILD_TYPE Release)
|
|
#set(CMAKE_BUILD_TYPE Debug)
|
|
|
|
SET(LIBRARY_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/lib)
|
|
|
|
# Call CMake on the subdirectories
|
|
add_subdirectory(src)
|