mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 10:32:57 +01:00
3eb18502e7
When building for iPhoneSimulator the parameter to specify the minimum OS version should be matched.
12 lines
330 B
Plaintext
12 lines
330 B
Plaintext
#
|
|
# iPhoneSimulator
|
|
#
|
|
# Build settings for iPhone Simulator, using Apple's iPhone SDK
|
|
#
|
|
|
|
IPHONE_SDK = iPhoneSimulator
|
|
POCO_TARGET_OSARCH = x86_64
|
|
OSFLAGS = -arch $(POCO_TARGET_OSARCH) -isysroot $(IPHONE_SDK_BASE) -miphonesimulator-version-min=$(IPHONE_SDK_VERSION_MIN)
|
|
|
|
include $(POCO_BASE)/build/config/iPhone
|