We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6dc6dd commit 44d51a5Copy full SHA for 44d51a5
package/spark/spark.mk
@@ -57,6 +57,10 @@ SPARK_CONF_OPTS += \
57
define RTCORE_INSTALL_LIBS
58
$(INSTALL) -m 755 $(@D)/build/egl/librtCore.so $(1)/usr/lib/
59
endef
60
+define RTCORE_INSTALL_INCLUDES
61
+ mkdir -p $(STAGING_DIR)/usr/include/unix
62
+ cp -Rpf $(@D)/src/unix/*.h $(STAGING_DIR)/usr/include/unix
63
+endef
64
65
endif
66
@@ -88,6 +92,7 @@ endif
88
92
define SPARK_INSTALL_STAGING_CMDS
89
93
$(call RTCORE_INSTALL_LIBS, $(STAGING_DIR))
90
94
cp -ar $(@D)/src/*.h $(STAGING_DIR)/usr/include/
95
+ $(RTCORE_INSTALL_INCLUDES)
91
96
mkdir -p $(STAGING_DIR)/usr/include/spark
97
cp -ar $(@D)/examples/pxScene2d/src/*.h $(STAGING_DIR)/usr/include/spark/
98
$(SPARK_INSTALL_PX_NATIVE_WINDOW)
0 commit comments