diff options
author | Sam Spilsbury <smspillaz@gmail.com> | 2013-11-02 13:19:30 +0800 |
---|---|---|
committer | Sam Spilsbury <smspillaz@gmail.com> | 2013-11-02 13:19:30 +0800 |
commit | ed2444b2f990c68c024a27e01a970c1313de2fe6 (patch) | |
tree | 717698c8588a77d920c1d1c3e024ae47d8dec436 /configure.in | |
parent | a52edf6fecb8056203d0575150508901ae0868f3 (diff) |
Only build libwayland_test.a if building tests with wayland
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 8fb51b80e4..edee4a2943 100644 --- a/configure.in +++ b/configure.in @@ -2554,9 +2554,12 @@ OUTPUT_FILES="Makefile \ xbmc/android/jni/Makefile \ xbmc/utils/Makefile \ xbmc/main/Makefile \ - xbmc/windowing/tests/wayland/Makefile \ project/cmake/xbmc-config.cmake" +if $use_wayland = "yes"; then +OUTPUT_FILES="$OUTPUT_FILES xbmc/windowing/tests/wayland/Makefile" +fi + if test "$use_skin_touched" = "yes"; then OUTPUT_FILES="$OUTPUT_FILES addons/skin.touched/media/Makefile" fi |