1From b6985abcb03fb09685da4044963e8f085035b208 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
3Date: Thu, 19 Aug 2021 08:06:45 +0200
4Subject: [PATCH] fluid/CMakeLists.txt: Do not export fluid target
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9It does not work for us: The executable 'fluid' is not installed in
10receipe-sysroot. So fltk cmake config contains an invalid reference.
11Consumers of fltk using cmake will fail during configure for this invalid
12reference with something like:
13
14| CMake Error at <...>/recipe-sysroot/usr/share/fltk/FLTK-Targets.cmake:129 (message):
15|   The imported target "fluid" references the file
16|
17|      "<...>/recipe-sysroot/usr/bin/fluid"
18|
19|   but this file does not exist.
20
21Upstream-Status: Inappropriate [OE specific]
22
23Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
24---
25 fluid/CMakeLists.txt | 1 -
26 1 file changed, 1 deletion(-)
27
28diff --git a/fluid/CMakeLists.txt b/fluid/CMakeLists.txt
29index 472c84c..f971121 100644
30--- a/fluid/CMakeLists.txt
31+++ b/fluid/CMakeLists.txt
32@@ -86,7 +86,6 @@ if (APPLE AND (NOT OPTION_APPLE_X11))
33   install (TARGETS fluid DESTINATION ${FLTK_BINDIR})
34 else()
35   install (TARGETS fluid
36-    EXPORT FLTK-Targets
37     RUNTIME DESTINATION ${FLTK_BINDIR}
38     LIBRARY DESTINATION ${FLTK_LIBDIR}
39     ARCHIVE DESTINATION ${FLTK_LIBDIR}
40--
412.31.1
42
43