Procházet zdrojové kódy

build: add iOS build rules to the XML configuration.

legacy
Sam Hocevar sam před 13 roky
rodič
revize
f778f5352e
1 změnil soubory, kde provedl 5 přidání a 2 odebrání
  1. +5
    -2
      build/bitten.xml

+ 5
- 2
build/bitten.xml Zobrazit soubor

@@ -80,7 +80,7 @@
ant compile || exit 1;
;;
ios-arm)
: ;
cd monsterz/ios && xcodebuild -configuration Release -sdk iphonesimulator4.3;
;;
ps3-ppu)
if test -f build-ps3; then make || exit 1; else cd monsterz/ps3 && make || exit 1; fi ;
@@ -102,9 +102,12 @@
<step id="clean" description="Clean tree">
<sh:exec file="sh" args="-c '
case ${platform} in
android-arm|ios-arm)
android-arm)
: ;
;;
ios-arm)
cd monsterz/ios &amp;&amp; xcodebuild -configuration Release -sdk iphonesimulator4.3 clean;
;;
ps3-ppu)
if test -f build-ps3; then make distclean || exit 1; fi ;
;;


Načítá se…
Zrušit
Uložit