ObjFW  Check-in [df1b93a092]

Overview
Comment:TestPlugin: Link against runtime
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: df1b93a092fcdc91e2bcf447ad4734288ce6d8ceef6747a2f43349188ca30586
User & Date: js on 2017-06-11 18:21:18
Other Links: manifest | tags
Context
2017-06-11
23:28
objfw-config: Add -lobjfw-rt to --libs check-in: 032cace081 user: js tags: trunk
18:21
TestPlugin: Link against runtime check-in: df1b93a092 user: js tags: trunk
18:16
Fix compilation on Windows check-in: 82bd082de3 user: js tags: trunk
Changes

Modified tests/plugin/Makefile from [49897d6981] to [c7c5ddc3ec].

1
2
3
4
5
6
7
8
9
PLUGIN_NOINST = TestPlugin${PLUGIN_SUFFIX}
SRCS = TestPlugin.m

include ../../buildsys.mk
include ../../extra.mk

CPPFLAGS += -I../.. -I../../src -I../../src/runtime
LIBS := -L../../src -lobjfw ${LIBS}
LD = ${OBJC}







|

1
2
3
4
5
6
7
8
9
PLUGIN_NOINST = TestPlugin${PLUGIN_SUFFIX}
SRCS = TestPlugin.m

include ../../buildsys.mk
include ../../extra.mk

CPPFLAGS += -I../.. -I../../src -I../../src/runtime
LIBS := -L../../src -lobjfw -L../../src/runtime ${RUNTIME_LIBS} ${LIBS}
LD = ${OBJC}