aboutsummaryrefslogtreecommitdiff
path: root/codegenerator.mk
diff options
context:
space:
mode:
authorFneufneu <fneufneu@xbmc.org>2014-10-10 16:02:41 +0200
committerFneufneu <fneufneu@xbmc.org>2014-12-15 21:38:21 +0100
commit4949be256667f3e500e52b7084476ae1f2b00d92 (patch)
treec7364d945b47e9d9e971c288652e77a8d7bd2eee /codegenerator.mk
parent135fe8734924f79cedace50986a0fa4f12d76647 (diff)
change xbmc/ path to src/ in all files
Diffstat (limited to 'codegenerator.mk')
-rw-r--r--codegenerator.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/codegenerator.mk b/codegenerator.mk
index 5ecb0c0273..a037bfefaa 100644
--- a/codegenerator.mk
+++ b/codegenerator.mk
@@ -1,5 +1,5 @@
TOPDIR ?= .
-INTERFACES_DIR ?= xbmc/interfaces
+INTERFACES_DIR ?= src/interfaces
JAVA ?= $(shell which java)
ifeq ($(JAVA),)
@@ -35,7 +35,7 @@ GENERATED += $(GENDIR)/AddonModuleXbmcplugin.cpp
GENERATED += $(GENDIR)/AddonModuleXbmcaddon.cpp
GENERATED += $(GENDIR)/AddonModuleXbmcvfs.cpp
-GENERATE_DEPS += $(TOPDIR)/xbmc/interfaces/legacy/*.h $(TOPDIR)/xbmc/interfaces/python/typemaps/*.intm $(TOPDIR)/xbmc/interfaces/python/typemaps/*.outtm
+GENERATE_DEPS += $(TOPDIR)/src/interfaces/legacy/*.h $(TOPDIR)/src/interfaces/python/typemaps/*.intm $(TOPDIR)/src/interfaces/python/typemaps/*.outtm
vpath %.i $(INTERFACES_DIR)/swig
@@ -49,7 +49,7 @@ $(GENDIR)/%.cpp: $(GENDIR)/%.xml $(JAVA) $(SWIG) $(DOXY_XML_PATH)
$(GENDIR)/%.xml: %.i $(SWIG) $(JAVA) $(GENERATE_DEPS)
mkdir -p $(GENDIR)
- $(SWIG) -w401 -c++ -o $@ -xml -I$(TOPDIR)/xbmc -xmllang python $<
+ $(SWIG) -w401 -c++ -o $@ -xml -I$(TOPDIR)/src -xmllang python $<
codegenerated: $(DOXYGEN) $(SWIG) $(JAVA) $(GENERATED) $(GENERATED_JSON) $(GENERATED_ADDON_JSON)