summaryrefslogtreecommitdiff
path: root/src/core/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar Zach Hilman2019-07-05 18:49:52 -0400
committerGravatar Zach Hilman2019-09-21 19:21:22 -0400
commit361a8fa318046e3c333668b3bdb91cbb46eb5639 (patch)
treee121416719a8c9bfbe3ef509319f7b5bd529cbe3 /src/core/CMakeLists.txt
parentUpdate README.md (#2871) (diff)
downloadyuzu-361a8fa318046e3c333668b3bdb91cbb46eb5639.tar.gz
yuzu-361a8fa318046e3c333668b3bdb91cbb46eb5639.tar.xz
yuzu-361a8fa318046e3c333668b3bdb91cbb46eb5639.zip
externals: Move OSS font data to file_sys in core
Diffstat (limited to 'src/core/CMakeLists.txt')
-rw-r--r--src/core/CMakeLists.txt16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
index 877a9e353..7c142c011 100644
--- a/src/core/CMakeLists.txt
+++ b/src/core/CMakeLists.txt
@@ -70,10 +70,24 @@ add_library(core STATIC
70 file_sys/sdmc_factory.h 70 file_sys/sdmc_factory.h
71 file_sys/submission_package.cpp 71 file_sys/submission_package.cpp
72 file_sys/submission_package.h 72 file_sys/submission_package.h
73 file_sys/system_archive/data/font_chinese_simplified.cpp
74 file_sys/system_archive/data/font_chinese_simplified.h
75 file_sys/system_archive/data/font_chinese_traditional.cpp
76 file_sys/system_archive/data/font_chinese_traditional.h
77 file_sys/system_archive/data/font_extended_chinese_simplified.cpp
78 file_sys/system_archive/data/font_extended_chinese_simplified.h
79 file_sys/system_archive/data/font_korean.cpp
80 file_sys/system_archive/data/font_korean.h
81 file_sys/system_archive/data/font_nintendo_extended.cpp
82 file_sys/system_archive/data/font_nintendo_extended.h
83 file_sys/system_archive/data/font_standard.cpp
84 file_sys/system_archive/data/font_standard.h
73 file_sys/system_archive/mii_model.cpp 85 file_sys/system_archive/mii_model.cpp
74 file_sys/system_archive/mii_model.h 86 file_sys/system_archive/mii_model.h
75 file_sys/system_archive/ng_word.cpp 87 file_sys/system_archive/ng_word.cpp
76 file_sys/system_archive/ng_word.h 88 file_sys/system_archive/ng_word.h
89 file_sys/system_archive/shared_font.cpp
90 file_sys/system_archive/shared_font.h
77 file_sys/system_archive/system_archive.cpp 91 file_sys/system_archive/system_archive.cpp
78 file_sys/system_archive/system_archive.h 92 file_sys/system_archive/system_archive.h
79 file_sys/system_archive/system_version.cpp 93 file_sys/system_archive/system_version.cpp
@@ -495,7 +509,7 @@ add_library(core STATIC
495create_target_directory_groups(core) 509create_target_directory_groups(core)
496 510
497target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) 511target_link_libraries(core PUBLIC common PRIVATE audio_core video_core)
498target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt json-headers mbedtls opus unicorn open_source_archives) 512target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt json-headers mbedtls opus unicorn)
499if (ENABLE_WEB_SERVICE) 513if (ENABLE_WEB_SERVICE)
500 target_compile_definitions(core PRIVATE -DENABLE_WEB_SERVICE) 514 target_compile_definitions(core PRIVATE -DENABLE_WEB_SERVICE)
501 target_link_libraries(core PRIVATE web_service) 515 target_link_libraries(core PRIVATE web_service)