summaryrefslogtreecommitdiff
path: root/src/core/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-07-06 10:51:32 -0400
committerGravatar bunnei2018-07-06 10:51:32 -0400
commit77c684c1140f6bf3fb7d4560d06d2efb1a2ee5e2 (patch)
tree38ef6451732c5eecb0efdd198f3db4d33848453c /src/core/CMakeLists.txt
parentMerge pull request #629 from Subv/depth_test (diff)
downloadyuzu-77c684c1140f6bf3fb7d4560d06d2efb1a2ee5e2.tar.gz
yuzu-77c684c1140f6bf3fb7d4560d06d2efb1a2ee5e2.tar.xz
yuzu-77c684c1140f6bf3fb7d4560d06d2efb1a2ee5e2.zip
Virtual Filesystem (#597)
* Add VfsFile and VfsDirectory classes * Finish abstract Vfs classes * Implement RealVfsFile (computer fs backend) * Finish RealVfsFile and RealVfsDirectory * Finished OffsetVfsFile * More changes * Fix import paths * Major refactor * Remove double const * Use experimental/filesystem or filesystem depending on compiler * Port partition_filesystem * More changes * More Overhaul * FSP_SRV fixes * Fixes and testing * Try to get filesystem to compile * Filesystem on linux * Remove std::filesystem and document/test * Compile fixes * Missing include * Bug fixes * Fixes * Rename v_file and v_dir * clang-format fix * Rename NGLOG_* to LOG_* * Most review changes * Fix TODO * Guess 'main' to be Directory by filename
Diffstat (limited to 'src/core/CMakeLists.txt')
-rw-r--r--src/core/CMakeLists.txt18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
index 3dff068df..582294a57 100644
--- a/src/core/CMakeLists.txt
+++ b/src/core/CMakeLists.txt
@@ -8,9 +8,9 @@ add_library(core STATIC
8 core_cpu.h 8 core_cpu.h
9 core_timing.cpp 9 core_timing.cpp
10 core_timing.h 10 core_timing.h
11 file_sys/content_archive.cpp
12 file_sys/content_archive.h
11 file_sys/directory.h 13 file_sys/directory.h
12 file_sys/disk_filesystem.cpp
13 file_sys/disk_filesystem.h
14 file_sys/errors.h 14 file_sys/errors.h
15 file_sys/filesystem.cpp 15 file_sys/filesystem.cpp
16 file_sys/filesystem.h 16 file_sys/filesystem.h
@@ -20,15 +20,13 @@ add_library(core STATIC
20 file_sys/path_parser.h 20 file_sys/path_parser.h
21 file_sys/program_metadata.cpp 21 file_sys/program_metadata.cpp
22 file_sys/program_metadata.h 22 file_sys/program_metadata.h
23 file_sys/romfs_factory.cpp
24 file_sys/romfs_factory.h
25 file_sys/romfs_filesystem.cpp
26 file_sys/romfs_filesystem.h
27 file_sys/savedata_factory.cpp
28 file_sys/savedata_factory.h
29 file_sys/sdmc_factory.cpp
30 file_sys/sdmc_factory.h
31 file_sys/storage.h 23 file_sys/storage.h
24 file_sys/vfs.cpp
25 file_sys/vfs.h
26 file_sys/vfs_offset.cpp
27 file_sys/vfs_offset.h
28 file_sys/vfs_real.cpp
29 file_sys/vfs_real.h
32 frontend/emu_window.cpp 30 frontend/emu_window.cpp
33 frontend/emu_window.h 31 frontend/emu_window.h
34 frontend/framebuffer_layout.cpp 32 frontend/framebuffer_layout.cpp