Overview
| Comment: | Allow building bridge as .framework via buildsys |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2bba5f1ef312bbce7c125612bfc90179 |
| User & Date: | js on 2017-10-15 20:27:20 |
| Other Links: | manifest | tags |
Context
|
2017-10-15
| ||
| 20:42 | Update .gitignore (check-in: 4d853d2d09 user: js tags: trunk) | |
| 20:27 | Allow building bridge as .framework via buildsys (check-in: 2bba5f1ef3 user: js tags: trunk) | |
| 20:23 | Update buildsys (check-in: 964aa78713 user: js tags: trunk) | |
Changes
Modified src/bridge/Makefile from [7db890c068] to [41e33dd4bb].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | + |
include ../../extra.mk
DISTCLEAN = Info.plist
SHARED_LIB = ${OBJFW_BRIDGE_SHARED_LIB}
STATIC_LIB = ${OBJFW_BRIDGE_STATIC_LIB}
LIB_MAJOR = ${OBJFW_LIB_MAJOR}
LIB_MINOR = ${OBJFW_LIB_MINOR}
FRAMEWORK = ObjFW_Bridge.framework
SRCS = OFArray+NSObject.m \
OFDictionary+NSObject.m \
OFString+NSObject.m \
NSArray+OFObject.m \
NSDictionary+OFObject.m \
NSString+OFObject.m
|
| ︙ | |||
26 27 28 29 30 31 32 | 27 28 29 30 31 32 33 34 35 36 | - + + + |
includesubdir = ObjFW_Bridge
include ../../buildsys.mk
CPPFLAGS += -I. -I.. -I../.. -I../exceptions -DOF_BRIDGE_LOCAL_INCLUDES
LD = ${OBJC}
|