This repository was archived by the owner on May 7, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +43
-2
lines changed Expand file tree Collapse file tree 2 files changed +43
-2
lines changed Original file line number Diff line number Diff line change 1- SDKLauncher-iOS
2- ===============
1+ ## SDKLauncher-iOS
32
43A small iOS application to serve as a launcher/testbed for the Readium SDK.
4+
5+ ## Jenkins build status
6+
7+ * master [ ![ Build Status] ( http://jenkinsmaster.datalogics-cloud.com:8080/buildStatus/icon?job=Readium-SDK-Launcher-iOS-master )] ( http://jenkinsmaster.datalogics-cloud:8080/view/Readium-Launcher/job/Readium-SDK-Launcher-iOS-master/ )
8+ * develop [ ![ Build Status] ( http://jenkinsmaster.datalogics-cloud.com:8080/buildStatus/icon?job=Readium-SDK-Launcher-iOS-develop )] ( http://jenkinsmaster.datalogics-cloud:8080/view/Readium-Launcher/job/Readium-SDK-Launcher-iOS-develop/ )
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <!-- Build file for the Launcher iOS -->
3+ <project name =" org.readium.LauncheriOS" default =" build.all" basedir =" ." >
4+
5+ <property name =" build.dir" value =" ${ basedir } " />
6+
7+ <property name =" project" value =" SDKLauncher-iOS.xcodeproj" />
8+ <property name =" target" value =" SDKLauncher-iOS" />
9+ <property name =" configuration" value =" Release" />
10+
11+ <!-- this builds Launcher-iOS -->
12+ <target name =" build.all" depends =" init" description =" Invoke xcodebuild to do a full build" >
13+ <exec executable =" xcodebuild" spawn =" false" failonerror =" true" >
14+ <arg value =" -project" />
15+ <arg value =" ${ project } " />
16+ <arg value =" -target" />
17+ <arg value =" ${ target } " />
18+ <arg value =" -configuration" />
19+ <arg value =" ${ configuration } " />
20+ </exec >
21+ </target >
22+
23+ <target name =" init" >
24+ </target >
25+
26+ <target name =" clean" depends =" init" description =" Clean the workspace" >
27+ <exec executable =" xcodebuild" spawn =" false" dir =" ${ build.dir } " failonerror =" true" >
28+ <arg value =" -project" />
29+ <arg value =" ${ project } " />
30+ <arg value =" -target" />
31+ <arg value =" ${ target } " />
32+ <arg value =" -configuration" />
33+ <arg value =" ${ configuration } " />
34+ </exec >
35+ <echo > Cleaned ${ xcworkspace } ! </echo >
36+ </target >
37+ </project >
You can’t perform that action at this time.
0 commit comments