diff options
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 43bd0e4..8cfeafe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,6 +15,12 @@ include("CompilerSetup") include("ConanPackages") option(EXTFS_BUILD_STATIC "Build extfs as a static library" ON) +option(EXTFS_ENABLE_TESTS "Enable CUTE unit tests" ON) include_directories("include") add_subdirectory("src") + +if(${EXTFS_ENABLE_TESTS}) + include("CUTE") + add_subdirectory("test") +endif() |
