Skip to content

Commit 3e71e63

Browse files
committed
Added source Git repo
1 parent f73526b commit 3e71e63

File tree

5 files changed

+23
-1
lines changed

5 files changed

+23
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
Frameworks/
2-
Source/
32
project.xcworkspace
43
xcuserdata

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "Source"]
2+
path = Source
3+
url = git://github.com/pocoproject/poco.git

Build-iOS.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
# Author: François-Xavier Thomas <[email protected]>
4+
# Author: Be Sport 2012
5+
6+
# Update Poco
7+
git submodule update
8+
9+
# Build Poco
10+
cd Source/
11+
12+
# Build iPhone libraries
13+
./configure --config=iPhone --no-tests --no-samples --omit=...
14+
make IPHONE_SDK_VERSION_MIN=3.0 POCO_TARGET_OSARCH=armv6 -s -j2
15+
make IPHONE_SDK_VERSION_MIN=3.2 POCO_TARGET_OSARCH=armv7 -s -j2
16+
17+
# Build iPhone simulator libraries
18+
./configure --config=iPhoneSimulator --no-tests --no-samples --omit=...
19+
make -s -j2

Source

Submodule Source added at 0607b0c

Source/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)