diff options
| author | 2022-04-29 11:27:05 +0200 | |
|---|---|---|
| committer | 2022-04-29 11:27:05 +0200 | |
| commit | 97fa9183c28f63dd37572a266a9c56e556c3660b (patch) | |
| tree | 2487261c8acc390837a19e19c826429e0fc2566e /src | |
| parent | b5c91675be7b61b90d4f189f8e44337a6eb53fab (diff) | |
| download | OneRoll-97fa9183c28f63dd37572a266a9c56e556c3660b.tar.gz OneRoll-97fa9183c28f63dd37572a266a9c56e556c3660b.zip | |
Using BUILD_TESTING from CTest.
Diffstat (limited to 'src')
| -rw-r--r-- | src/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d200d8a..e0010c5 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -4,6 +4,6 @@ cmake_minimum_required(VERSION 3.16) add_subdirectory(libparser) add_subdirectory(bin) -if(TESTS) +if(BUILD_TESTING) add_subdirectory(tests) -endif()
\ No newline at end of file +endif() |