Disable warnings in build_and_install.sh.

This commit is contained in:
Kyle Neideck 2017-06-21 08:31:56 +10:00
parent 03135dbc6e
commit 3e528c7de0
No known key found for this signature in database
GPG key ID: CAA8D9B8E39EC18C
2 changed files with 3 additions and 1 deletions

View file

@ -107,7 +107,7 @@ static BGMMusicPlayer* sSelectedMusicPlayer;
return self; return self;
} }
- (id) eventDidFail:(const AppleEvent*)event withError:(NSError*)error { - (id __nullable) eventDidFail:(const AppleEvent*)event withError:(NSError*)error {
// SBApplicationDelegate method. So far, this just logs the error. // SBApplicationDelegate method. So far, this just logs the error.
#if DEBUG #if DEBUG

View file

@ -445,6 +445,7 @@ echo "[2/3] Installing $(bold_face ${XPC_HELPER_DIR}) to $(bold_face ${XPC_HELPE
sudo "${XCODEBUILD}" -project BGMApp/BGMApp.xcodeproj \ sudo "${XCODEBUILD}" -project BGMApp/BGMApp.xcodeproj \
-target BGMXPCHelper \ -target BGMXPCHelper \
-configuration ${CONFIGURATION} \ -configuration ${CONFIGURATION} \
OTHER_CFLAGS="-Wno-everything" \
RUN_CLANG_STATIC_ANALYZER=0 \ RUN_CLANG_STATIC_ANALYZER=0 \
DSTROOT="/" \ DSTROOT="/" \
INSTALL_PATH="${XPC_HELPER_PATH}" \ INSTALL_PATH="${XPC_HELPER_PATH}" \
@ -461,6 +462,7 @@ echo "[3/3] Installing $(bold_face ${APP_DIR}) to $(bold_face ${APP_PATH})." \
sudo "${XCODEBUILD}" -project BGMApp/BGMApp.xcodeproj \ sudo "${XCODEBUILD}" -project BGMApp/BGMApp.xcodeproj \
-target "Background Music" \ -target "Background Music" \
-configuration ${CONFIGURATION} \ -configuration ${CONFIGURATION} \
OTHER_CFLAGS="-Wno-everything" \
RUN_CLANG_STATIC_ANALYZER=0 \ RUN_CLANG_STATIC_ANALYZER=0 \
DSTROOT="/" \ DSTROOT="/" \
${CLEAN} install >> ${LOG_FILE} 2>&1) & ${CLEAN} install >> ${LOG_FILE} 2>&1) &