blob: 492db43fa69477e5e4db45345e3dde668cf8ea6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
--- xbmc-21.2-Omega.orig/CMakeLists.txt 2025-01-15 23:14:15.000000000 +0100
+++ xbmc-21.2-Omega/CMakeLists.txt 2025-10-06 04:40:59.015473347 +0200
@@ -184,7 +184,6 @@ endforeach()
# Required tools. Keep in alphabetical order please
set(required_buildtools FlatC
JsonSchemaBuilder
- TexturePacker
)
# Optional build tools
@@ -473,7 +472,6 @@ endif()
add_custom_command(
OUTPUT ${CMAKE_BINARY_DIR}/${CORE_BUILD_DIR}/${CONFIG_VAR}/gen_skin.timestamp
COMMAND ${CMAKE_COMMAND} -DBUNDLEDIR=${_bundle_dir}
- -DTEXTUREPACKER_EXECUTABLE=$<TARGET_FILE:TexturePacker::TexturePacker::Executable>
-P ${CMAKE_BINARY_DIR}/${CORE_BUILD_DIR}/GeneratedPackSkins.cmake
COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/${CORE_BUILD_DIR}/${CONFIG_VAR}
COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_BINARY_DIR}/${CORE_BUILD_DIR}/${CONFIG_VAR}/gen_skin.timestamp
@@ -486,7 +484,7 @@ add_custom_target(gen_skin_pack DEPENDS
# 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)
+ DEPENDS 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})
|