mirror of
https://github.com/bensuperpc/astar.git
synced 2026-05-05 19:05:24 +02:00
7d81e22900
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
22 lines
456 B
CMake
22 lines
456 B
CMake
include(cmake/folders.cmake)
|
|
|
|
include(CTest)
|
|
if(BUILD_TESTING)
|
|
add_subdirectory(test)
|
|
endif()
|
|
|
|
option(BUILD_MCSS_DOCS "Build documentation using Doxygen and m.css" OFF)
|
|
if(BUILD_MCSS_DOCS)
|
|
include(cmake/docs.cmake)
|
|
endif()
|
|
|
|
option(ENABLE_COVERAGE "Enable coverage support separate from CTest's" OFF)
|
|
if(ENABLE_COVERAGE)
|
|
include(cmake/coverage.cmake)
|
|
endif()
|
|
|
|
include(cmake/lint-targets.cmake)
|
|
include(cmake/spell-targets.cmake)
|
|
|
|
add_folders(Project)
|