aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorwsnipex <wsnipex@a1.net>2014-07-17 16:16:40 +0200
committermontellese <montellese@xbmc.org>2014-07-30 11:16:02 +0200
commit068aafc23253ebe9c76abb2615599d9bbbcb69fa (patch)
tree373dbd9622f3faef1f7b82bd74d13e69e92a19df /tools
parent0cc1ff9ccd060f1599b96183d3531150d919c3df (diff)
cmake: allow building of selected addons in xbmc-addons project
Diffstat (limited to 'tools')
-rw-r--r--tools/depends/target/xbmc-audioencoder-addons/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/depends/target/xbmc-audioencoder-addons/Makefile b/tools/depends/target/xbmc-audioencoder-addons/Makefile
index 15cf50d288..9153a24787 100644
--- a/tools/depends/target/xbmc-audioencoder-addons/Makefile
+++ b/tools/depends/target/xbmc-audioencoder-addons/Makefile
@@ -1,7 +1,6 @@
-include ../../Makefile.include
-LIBNAME = xbmc-audioencoder-addons
-
+ADDONS = "audioencoder.flac audioencoder.lame audioencoder.vorbis audioencoder.wav"
ifeq ($(PLATFORM),)
PLATFORM = native
endif
@@ -36,6 +35,6 @@ endif
mkdir -p $(PLATFORM); \
cd $(PLATFORM); \
$(CMAKE) -DCMAKE_INSTALL_PREFIX=$(INSTALL_PREFIX) -DCMAKE_PREFIX_PATH=$(PREFIX) $(CMAKE_EXTRA) \
- ../../../../../project/cmake/addons/ ;\
+ -DADDONS_TO_BUILD=$(ADDONS) ../../../../../project/cmake/addons/ ;\
$(MAKE);
touch $@