diff options
| author | 2019-07-05 18:49:52 -0400 | |
|---|---|---|
| committer | 2019-10-13 13:46:10 -0400 | |
| commit | d6d6a87bde05bc7bed48446708bd19cf0498af8a (patch) | |
| tree | 76f744dc9c0377b394f4e336c4da17cf0039893a /src/core/CMakeLists.txt | |
| parent | Merge pull request #2910 from FearlessTobi/port-4930 (diff) | |
| download | yuzu-d6d6a87bde05bc7bed48446708bd19cf0498af8a.tar.gz yuzu-d6d6a87bde05bc7bed48446708bd19cf0498af8a.tar.xz yuzu-d6d6a87bde05bc7bed48446708bd19cf0498af8a.zip | |
externals: Move OSS font data to file_sys in core
Diffstat (limited to 'src/core/CMakeLists.txt')
| -rw-r--r-- | src/core/CMakeLists.txt | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 3b1d72cf9..4f6a87b0a 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -74,10 +74,24 @@ add_library(core STATIC | |||
| 74 | file_sys/sdmc_factory.h | 74 | file_sys/sdmc_factory.h |
| 75 | file_sys/submission_package.cpp | 75 | file_sys/submission_package.cpp |
| 76 | file_sys/submission_package.h | 76 | file_sys/submission_package.h |
| 77 | file_sys/system_archive/data/font_chinese_simplified.cpp | ||
| 78 | file_sys/system_archive/data/font_chinese_simplified.h | ||
| 79 | file_sys/system_archive/data/font_chinese_traditional.cpp | ||
| 80 | file_sys/system_archive/data/font_chinese_traditional.h | ||
| 81 | file_sys/system_archive/data/font_extended_chinese_simplified.cpp | ||
| 82 | file_sys/system_archive/data/font_extended_chinese_simplified.h | ||
| 83 | file_sys/system_archive/data/font_korean.cpp | ||
| 84 | file_sys/system_archive/data/font_korean.h | ||
| 85 | file_sys/system_archive/data/font_nintendo_extended.cpp | ||
| 86 | file_sys/system_archive/data/font_nintendo_extended.h | ||
| 87 | file_sys/system_archive/data/font_standard.cpp | ||
| 88 | file_sys/system_archive/data/font_standard.h | ||
| 77 | file_sys/system_archive/mii_model.cpp | 89 | file_sys/system_archive/mii_model.cpp |
| 78 | file_sys/system_archive/mii_model.h | 90 | file_sys/system_archive/mii_model.h |
| 79 | file_sys/system_archive/ng_word.cpp | 91 | file_sys/system_archive/ng_word.cpp |
| 80 | file_sys/system_archive/ng_word.h | 92 | file_sys/system_archive/ng_word.h |
| 93 | file_sys/system_archive/shared_font.cpp | ||
| 94 | file_sys/system_archive/shared_font.h | ||
| 81 | file_sys/system_archive/system_archive.cpp | 95 | file_sys/system_archive/system_archive.cpp |
| 82 | file_sys/system_archive/system_archive.h | 96 | file_sys/system_archive/system_archive.h |
| 83 | file_sys/system_archive/system_version.cpp | 97 | file_sys/system_archive/system_version.cpp |
| @@ -511,7 +525,7 @@ add_library(core STATIC | |||
| 511 | create_target_directory_groups(core) | 525 | create_target_directory_groups(core) |
| 512 | 526 | ||
| 513 | target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) | 527 | target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) |
| 514 | target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt json-headers mbedtls opus unicorn open_source_archives) | 528 | target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt json-headers mbedtls opus unicorn) |
| 515 | 529 | ||
| 516 | if (YUZU_ENABLE_BOXCAT) | 530 | if (YUZU_ENABLE_BOXCAT) |
| 517 | get_directory_property(OPENSSL_LIBS | 531 | get_directory_property(OPENSSL_LIBS |