diff options
author | Andrew Kaster <akaster@serenityos.org> | 2021-08-08 00:06:55 -0600 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-08-28 08:44:17 +0100 |
commit | e88761b2b97957b755c7406388acede614356a65 (patch) | |
tree | f517d16aaa79a5c92facbe4ebf9f09a1cb92822d /Meta/Azure | |
parent | 47471c0ec22196b90481da7d7d5e51ac18565548 (diff) | |
download | serenity-e88761b2b97957b755c7406388acede614356a65.zip |
Meta+LibUnicode: Move unicode_data helper to Meta/CMake
Moving this helper CMake file to the centralized Meta/CMake folder helps
to get a better grasp on what extra files are required for the build,
and what files are generated.
While we're at it, don't use add_compile_definitions for
ENABLE_UNICODE_DATA, which only needs to be seen by LibUnicode sources.
Diffstat (limited to 'Meta/Azure')
-rw-r--r-- | Meta/Azure/Caches.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Meta/Azure/Caches.yml b/Meta/Azure/Caches.yml index 55d30688f1..f65fd2a739 100644 --- a/Meta/Azure/Caches.yml +++ b/Meta/Azure/Caches.yml @@ -36,13 +36,13 @@ steps: - ${{ if eq(parameters.with_unicode_caches, true) }}: - task: Cache@2 inputs: - key: '"unicode_data" | Userland/Libraries/LibUnicode/unicode_data.cmake' + key: '"unicode_data" | Meta/CMake/unicode_data.cmake' path: $(Build.SourcesDirectory)/${{ parameters.build_directory }}/UCD displayName: 'UnicodeData Cache' - task: Cache@2 inputs: - key: '"unicode_locale" | Userland/Libraries/LibUnicode/unicode_data.cmake' + key: '"unicode_locale" | Meta/CMake/unicode_data.cmake' path: $(Build.SourcesDirectory)/${{ parameters.build_directory }}/CLDR displayName: 'UnicodeLocale Cache' |