Skip to content
This repository was archived by the owner on May 7, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
SDKLauncher-iOS
===============
## SDKLauncher-iOS

A small iOS application to serve as a launcher/testbed for the Readium SDK.

## Jenkins build status

* 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/)
* 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/)
37 changes: 37 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Build file for the Launcher iOS -->
<project name="org.readium.LauncheriOS" default="build.all" basedir=".">

<property name="build.dir" value="${basedir}" />

<property name="project" value="SDKLauncher-iOS.xcodeproj"/>
<property name="target" value="SDKLauncher-iOS"/>
<property name="configuration" value="Release"/>

<!-- this builds Launcher-iOS -->
<target name ="build.all" depends="init" description="Invoke xcodebuild to do a full build" >
<exec executable="xcodebuild" spawn="false" failonerror="true">
<arg value="-project" />
<arg value="${project}" />
<arg value="-target" />
<arg value="${target}" />
<arg value="-configuration" />
<arg value="${configuration}" />
</exec>
</target>

<target name="init" >
</target>

<target name="clean" depends="init" description="Clean the workspace">
<exec executable="xcodebuild" spawn="false" dir="${build.dir}" failonerror="true">
<arg value="-project" />
<arg value="${project}" />
<arg value="-target" />
<arg value="${target}" />
<arg value="-configuration" />
<arg value="${configuration}" />
</exec>
<echo> Cleaned ${xcworkspace} ! </echo>
</target>
</project>