blob: 2ff5750d33de25d40b4e78cec91d756172a2e8a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# **********************************************************************
#
# Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
$(project)_type = xcode
$(project)_platforms = iphonesimulator iphoneos
$(project)_configs = xcodesdk arc-xcodesdk
$(project)_dependencies = $(if $(ICE_BIN_DIST),,IceObjC IceSSLObjC IceGridObjC Glacier2ObjC IceStormObjC)
$(project)_project = Objective-C Test Controller.xcodeproj
$(project)_scheme = $(if $(filter arc-xcodesdk,$2),Objective-C ARC Test Controller,Objective-C Test Controller)
# Always build debug configuration to prevent symbols from being stripped
$(project)_configuration = Debug
projects += $(project)
tests:: $(project)
|