diff options
author | fuzzard <fuzzard@users.noreply.github.com> | 2023-09-14 08:33:15 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-14 08:33:15 +1000 |
commit | 7df905b77bb4a8aeb7f31b42368ac418e849660f (patch) | |
tree | 55493c112bb0aa8e0326b84a69a355542b307021 | |
parent | 1f4ee051090a27f0f37348e8229bdce271ba7036 (diff) | |
parent | 41e6ed5342627e0b46955487a3b7ed9192e4061d (diff) |
Merge pull request #23761 from fuzzard/cmake_fixninja
[cmake] Remove XBT_FILES as a dependency of generate-packaging TARGET
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4df3257a55..8e137c447c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -438,7 +438,7 @@ add_custom_target(gen_skin_pack # Packaging target. This generates system addon, xbt creation, copy files to build tree add_custom_target(generate-packaging ALL - DEPENDS TexturePacker::TexturePacker::Executable export-files gen_skin_pack gen_system_addons ${XBT_FILES}) + DEPENDS TexturePacker::TexturePacker::Executable export-files gen_skin_pack gen_system_addons) # Make sure we build any libs before we look to export-files. # We may need to export some shared libs/data (eg Python) add_dependencies(export-files ${GLOBAL_TARGET_DEPS}) |