We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 112c095 commit fd9fa0cCopy full SHA for fd9fa0c
4 files changed
CMakeLists.txt
@@ -79,6 +79,12 @@ add_library(fssub STATIC
79
)
80
target_compile_options(fssub PRIVATE ${COMPILE_OPTIONS})
81
82
+add_library(fsmem STATIC
83
+ extras/backends/mem/fs_mem.c
84
+ extras/backends/mem/fs_mem.h
85
+)
86
+target_compile_options(fsmem PRIVATE ${COMPILE_OPTIONS})
87
+
88
89
# Tests
90
if(FS_BUILD_TESTS)
@@ -90,6 +96,7 @@ if(FS_BUILD_TESTS)
96
fszip
91
97
fspak
92
98
fssub
99
+ fsmem
93
100
94
101
target_compile_options(fs_test PRIVATE ${COMPILE_OPTIONS})
95
102
add_test(NAME fs_test COMMAND fs_test)
0 commit comments