aboutsummaryrefslogtreecommitdiff
path: root/libs/usvfs/test/tvfs_test/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/tvfs_test/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/tvfs_test/CMakeLists.txt')
-rw-r--r--libs/usvfs/test/tvfs_test/CMakeLists.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/libs/usvfs/test/tvfs_test/CMakeLists.txt b/libs/usvfs/test/tvfs_test/CMakeLists.txt
new file mode 100644
index 0000000..f66a7b4
--- /dev/null
+++ b/libs/usvfs/test/tvfs_test/CMakeLists.txt
@@ -0,0 +1,12 @@
+cmake_minimum_required(VERSION 3.16)
+
+find_package(GTest CONFIG REQUIRED)
+
+add_executable(tvfs_test main.cpp)
+usvfs_set_test_properties(tvfs_test)
+target_link_libraries(tvfs_test PRIVATE test_utils usvfs_helper GTest::gtest GTest::gmock GTest::gtest_main)
+usvfs_target_link_usvfs(tvfs_test)
+
+# tvfs_test uses a private USVFS header so we need to include it manually
+get_target_property(USVFS_SOURCE_DIR usvfs_dll SOURCE_DIR)
+target_include_directories(tvfs_test PRIVATE ${USVFS_SOURCE_DIR})