Mercurial > hg > btrack
diff CMakeLists.txt @ 117:ca2d83d29814 tip master
Merge branch 'release/1.0.5'
author | Adam Stark <adamstark.uk@gmail.com> |
---|---|
date | Fri, 18 Aug 2023 20:07:33 +0200 |
parents | 33be76921da9 |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/CMakeLists.txt Fri Aug 18 20:07:33 2023 +0200 @@ -0,0 +1,16 @@ +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) +