mirror of
https://github.com/kyleneideck/BackgroundMusic
synced 2024-11-22 12:13:03 +00:00
Disable warnings in build_and_install.sh.
This commit is contained in:
parent
03135dbc6e
commit
3e528c7de0
2 changed files with 3 additions and 1 deletions
|
@ -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
|
||||||
|
|
|
@ -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) &
|
||||||
|
|
Loading…
Reference in a new issue