Parcourir la source

MVK: propagate debug flag to the underlying libvlc compilation process

Felix Paul Kühne il y a 10 ans
Parent
commit
4b75b17d9a
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  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}"