From bf6573c6cbc7b3a6c810ed9c1fd31cb2f95b0465 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 8 Feb 2021 16:33:25 +0100 Subject: [PATCH] enyo-doom: fix ninja build --- srcpkgs/enyo-doom/patches/cmake.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 srcpkgs/enyo-doom/patches/cmake.patch diff --git a/srcpkgs/enyo-doom/patches/cmake.patch b/srcpkgs/enyo-doom/patches/cmake.patch new file mode 100644 index 00000000000..8c9d9f4c664 --- /dev/null +++ b/srcpkgs/enyo-doom/patches/cmake.patch @@ -0,0 +1,13 @@ +--- CMakeLists.txt 2020-09-20 23:03:04.000000000 +0200 ++++ - 2021-02-08 16:29:03.621982747 +0100 +@@ -22,8 +22,8 @@ + include_directories ( ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) + find_package ( Qt5Core REQUIRED ) + find_package (Qt5Widgets REQUIRED ) +-add_definitions ( $(Qt5Core_DEFINITIONS) ) +-add_definitions ( $(Qt5Widgets_DEFINITIONS) ) ++add_definitions ( ${Qt5Core_DEFINITIONS} ) ++add_definitions ( ${Qt5Widgets_DEFINITIONS} ) + qt5_wrap_ui ( UI_HEADERS ${ENYO_DOOM_UIS} ) + qt5_wrap_cpp ( MOC_SOURCES ${ENYO_DOOM_HDRS} ) + qt5_add_resources ( RC_SOURCES ${ENYO_DOOM_RCS} )