-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix for Projucer 6.0.7 iOS exporters "Binary Location" filed to be in…
…terpreted as absolute path in XCode
- Loading branch information
Martin Spindler
committed
Mar 19, 2021
1 parent
13a6b7d
commit b79b9eb
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<JUCERPROJECT name="Jucy Fluttering" version="0.0.1" userNotes="A simple mobile app example (iOS, Android) that uses a Flutter UI and JUCE as backend." | ||
<JUCERPROJECT name="Jucy Fluttering" version="0.0.2" userNotes="A simple mobile app example (iOS, Android) that uses a Flutter UI and JUCE as backend." | ||
useAppConfig="0" addUsingNamespaceToJuceHeader="1" id="sRCsV2" | ||
displaySplashScreen="1" jucerFormatVersion="1" bundleIdentifier="eu.selfhost.audiooffler" | ||
companyCopyright="© 2020, audiooffler" companyEmail="[email protected]" | ||
|
@@ -90,10 +90,10 @@ | |
smallIcon="klBN0Z" bigIcon="klBN0Z"> | ||
<CONFIGURATIONS> | ||
<CONFIGURATION name="Debug" isDebug="1" optimisation="1" targetName="JucyFluttering" | ||
binaryPath="$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)" | ||
binaryPath="/$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)" | ||
headerPath="Source/DartApiDL"/> | ||
<CONFIGURATION name="Release" isDebug="0" optimisation="3" targetName="JucyFluttering" | ||
binaryPath="$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)" | ||
binaryPath="/$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)" | ||
headerPath="Source/DartApiDL"/> | ||
</CONFIGURATIONS> | ||
<MODULEPATHS> | ||
|