summaryrefslogtreecommitdiff
path: root/games/stuntrally/files/patch-cmake_DependenciesConfig.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'games/stuntrally/files/patch-cmake_DependenciesConfig.cmake')
-rw-r--r--games/stuntrally/files/patch-cmake_DependenciesConfig.cmake24
1 files changed, 0 insertions, 24 deletions
diff --git a/games/stuntrally/files/patch-cmake_DependenciesConfig.cmake b/games/stuntrally/files/patch-cmake_DependenciesConfig.cmake
deleted file mode 100644
index 62c3725f1e37..000000000000
--- a/games/stuntrally/files/patch-cmake_DependenciesConfig.cmake
+++ /dev/null
@@ -1,24 +0,0 @@
---- cmake/DependenciesConfig.cmake.orig 2022-11-11 19:35:22 UTC
-+++ cmake/DependenciesConfig.cmake
-@@ -79,13 +79,14 @@ add_external_lib(
- FIND_PACKAGE
- )
-
--add_external_lib(
-- tinyxml
-- tinyxml/2.6.2
-- REQUIRED
-- PKG_CONFIG "tinyxml >= 2.6"
-- FIND_PACKAGE
--)
-+find_path(TINYXML_INCLUDE_DIR tinyxml.h)
-+find_library(TINYXML_LIBRARY tinyxml)
-+
-+add_library(tinyxml::tinyxml INTERFACE IMPORTED GLOBAL)
-+target_include_directories(tinyxml::tinyxml INTERFACE ${TINYXML_INCLUDE_DIR})
-+target_link_libraries(tinyxml::tinyxml INTERFACE ${TINYXML_LIBRARY})
-+
-+message(STATUS "Added inteface tinyxml ${TINYXML_INCLUDE_DIR} ${TINYXML_LIBRARY}")
-
- add_external_lib(
- tinyxml2