Browse Source

MVK: propagate debug flag to the underlying libvlc compilation process

Felix Paul Kühne 10 years ago
parent
commit
4b75b17d9a
1 changed files with 3 additions and 0 deletions
  1. 3 0
      buildMobileVLCKit.sh

+ 3 - 0
buildMobileVLCKit.sh

@@ -167,6 +167,9 @@ buildMobileKit() {
     if [ "$VERBOSE" = "yes" ]; then
         args="${args} -v"
     fi
+    if [ "$CONFIGURATION" = "Debug" ]; then
+        args="${args} -d"
+    fi
     if [ "$PLATFORM" = "iphonesimulator" ]; then
         args="${args} -s"
         ./build.sh -a i386 ${args} -k "${SDK}" && ./build.sh -a x86_64 ${args} -k "${SDK}"