4c29892658
* better and faster trip clustering: trip tries * add --write-colors to extract line colors from OSM data * refactor config parameter names, update default pfaedle.cfg * add --stats for writing a stats.json file * add --no-fast-hops, --no-a-star, --no-trie for debugging * general refactoring
16 lines
342 B
CMake
16 lines
342 B
CMake
set(PFAEDLE_INCLUDE_DIR ${CMAKE_CURRENT_LIST_DIR} ${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
if (COMMAND cpplint_add_subdirectory)
|
|
cpplint_add_subdirectory(pfaedle)
|
|
endif()
|
|
|
|
include_directories(
|
|
${PFAEDLE_INCLUDE_DIR}
|
|
)
|
|
|
|
add_subdirectory(util)
|
|
add_subdirectory(pfaedle)
|
|
add_subdirectory(cppgtfs)
|
|
add_subdirectory(configparser)
|
|
add_subdirectory(shapevl)
|