aboutsummaryrefslogtreecommitdiff
path: root/libs/usvfs/test/usvfs_test_runner/CMakeLists.txt
diff options
context:
space:
mode:
authorSulfurNitride <SulfurNitride@users.noreply.github.com>2026-02-11 02:37:39 -0600
committerSulfurNitride <SulfurNitride@users.noreply.github.com>2026-02-11 02:37:39 -0600
commit7ee008e150bc5bcf76082d726f719ee0fdfda982 (patch)
tree27fb39be241fdb5ac2734c574de678977d1856d0 /libs/usvfs/test/usvfs_test_runner/CMakeLists.txt
Fluorine Manager: full Linux port of Mod Organizer 2
Complete native Linux port with FUSE-based virtual filesystem, Proton/umu-run integration, and Flatpak packaging. Key features: - FUSE VFS replacing Windows USVFS (in-process + standalone helper for Flatpak) - Proton/GE-Proton/umu-run launcher with env var forwarding - Flatpak support (sandbox-aware VFS, NXM handler, umu-run) - Wine prefix management UI - Case-insensitive path resolution for Linux filesystems - QSettings-safe INI handling (avoids Bethesda INI corruption) - Portable instance support with auto-generated launcher scripts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'libs/usvfs/test/usvfs_test_runner/CMakeLists.txt')
-rw-r--r--libs/usvfs/test/usvfs_test_runner/CMakeLists.txt35
1 files changed, 35 insertions, 0 deletions
diff --git a/libs/usvfs/test/usvfs_test_runner/CMakeLists.txt b/libs/usvfs/test/usvfs_test_runner/CMakeLists.txt
new file mode 100644
index 0000000..a0a7ca9
--- /dev/null
+++ b/libs/usvfs/test/usvfs_test_runner/CMakeLists.txt
@@ -0,0 +1,35 @@
+cmake_minimum_required(VERSION 3.16)
+
+find_package(GTest CONFIG REQUIRED)
+
+# other executables
+add_executable(test_file_operations
+ test_file_operations/test_file_operations.cpp
+ test_file_operations/test_filesystem.cpp
+ test_file_operations/test_filesystem.h
+ test_file_operations/test_ntapi.cpp
+ test_file_operations/test_ntapi.h
+ test_file_operations/test_ntdll_declarations.h
+ test_file_operations/test_w32api.cpp
+ test_file_operations/test_w32api.h
+)
+usvfs_set_test_properties(test_file_operations FOLDER usvfs_test_runner)
+target_link_libraries(test_file_operations PRIVATE test_utils ntdll)
+
+add_executable(usvfs_test
+ usvfs_test/usvfs_basic_test.cpp
+ usvfs_test/usvfs_basic_test.h
+ usvfs_test/usvfs_test_base.cpp
+ usvfs_test/usvfs_test_base.h
+ usvfs_test/usvfs_test.cpp
+)
+usvfs_set_test_properties(usvfs_test FOLDER usvfs_test_runner)
+usvfs_target_link_usvfs(usvfs_test)
+target_link_libraries(usvfs_test PRIVATE test_utils)
+
+# actual test executable
+add_executable(usvfs_test_runner usvfs_test_runner.cpp)
+usvfs_set_test_properties(usvfs_test_runner FOLDER usvfs_test_runner)
+target_link_libraries(usvfs_test_runner
+ PRIVATE test_utils GTest::gtest GTest::gtest_main)
+add_dependencies(usvfs_test_runner usvfs_test test_file_operations)