Mercurial > hg > btrack
view CMakeLists.txt @ 114:d6d9df2db3e1
Update documentation
| author | Adam Stark <adamstark.uk@gmail.com> |
|---|---|
| date | Fri, 18 Aug 2023 10:48:26 +0200 |
| parents | 33be76921da9 |
| children |
line wrap: on
line source
cmake_minimum_required (VERSION 3.12) project (BTrack VERSION 1.0.4) set (CMAKE_CXX_STANDARD 11) option (BUILD_TESTS "Build tests" OFF) add_subdirectory (src) if (BUILD_TESTS) enable_testing() add_subdirectory (tests) endif (BUILD_TESTS) set (CMAKE_SUPPRESS_REGENERATION true)
