diff options
| author | SulfurNitride <lukew19@proton.me> | 2026-06-23 16:10:53 -0500 |
|---|---|---|
| committer | SulfurNitride <lukew19@proton.me> | 2026-06-23 16:10:53 -0500 |
| commit | 08939441e50e52c685c531a16704fb8f6e1138bd (patch) | |
| tree | 962932046d46d4fd33953c073e3eb95aeb768096 /CMakeLists.txt | |
| parent | f415cfae26153b0853466316c0d8d1738e029976 (diff) | |
Fix FOMOD casing and VFS test coverage
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7ec1a74..ebb415d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -64,6 +64,7 @@ if(HAS_NO_DIRECT_EXTERN_ACCESS) endif() option(BUILD_TESTING "Build tests" OFF) +option(BUILD_FLUORINE_TESTING "Build Fluorine standalone tests" OFF) option(BUILD_BSA_FFI "Build Rust BSA/BA2 FFI library" ON) option(BUILD_DOTNET_PLUGINS "Build C++/CLI .NET plugins (Windows+MSVC only)" OFF) option(BUILD_PLUGIN_PYTHON "Build plugin_python bridge on Linux" ON) @@ -285,7 +286,7 @@ endif() # Main organizer executable add_subdirectory(src/src) -if (BUILD_TESTING) +if (BUILD_FLUORINE_TESTING) enable_testing() add_subdirectory(src/tests) endif() |
