diff options
author | Stephan Raue <stephan@openelec.tv> | 2011-09-06 03:08:43 +0200 |
---|---|---|
committer | Stephan Raue <stephan@openelec.tv> | 2011-09-06 03:08:43 +0200 |
commit | 71892845a840d3e9732e731dc38a1a399b018dfd (patch) | |
tree | 0abc295daf301d15d911d115175bbb980b24bbc3 /Makefile.in | |
parent | 2b6a5d196e035a2d53e86e8ed6f02c24f20a8e49 (diff) |
configure: let select XBMCProjectM, this adds support to enable/disable building XBMCProjectM via configure option
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 1b08e8b890..1aecd71889 100644 --- a/Makefile.in +++ b/Makefile.in @@ -141,11 +141,10 @@ ifneq (@DISABLE_RSXS@,1) endif VIS_DIRS=xbmc/visualizations/OpenGLSpectrum \ - xbmc/visualizations/WaveForm + xbmc/visualizations/WaveForm -ifeq (@USE_OPENGL@,1) -VIS_DIRS+=\ - xbmc/visualizations/XBMCProjectM +ifneq (@DISABLE_PROJECTM@,1) + VIS_DIRS+= xbmc/visualizations/XBMCProjectM endif ifeq (($(findstring osx,@ARCH@), osx),(@USE_OPENGL@,1)) |