ObjFW  Check-in [13b87b47b3]

Overview
Comment:Add LIBS for tests/OFPlugin/TestPlugin.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 13b87b47b3c726a520c78e4ddd9c06f3960890c38a975422a65cfd2fd68d2f83
User & Date: js on 2009-05-24 00:57:51
Other Links: manifest | tags
Context
2009-05-24
10:49
Only hardlink libobjfw.dll if it exists. check-in: 975dd403fa user: js tags: trunk
00:57
Add LIBS for tests/OFPlugin/TestPlugin. check-in: 13b87b47b3 user: js tags: trunk
00:42
Create a hardlink instead of a symlink to libobjfw.dll in tests.
This way, it also works on Cygwin.
check-in: ebfbdf512a user: js tags: trunk
Changes

Modified tests/OFPlugin/TestPlugin/Makefile from [b512e9a984] to [d31b78c0af].

1
2
3
4
5
6
7
8
9

PLUGIN_NOINST = TestPlugin${PLUGIN_SUFFIX}
SRCS = TestPlugin.m

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

CPPFLAGS += ${PLUGIN_CPPFLAGS} -I../../../src
OBJCFLAGS += ${PLUGIN_CFLAGS}
LDFLAGS += ${PLUGIN_LDFLAGS}










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

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

CPPFLAGS += ${PLUGIN_CPPFLAGS} -I../../../src
OBJCFLAGS += ${PLUGIN_CFLAGS}
LDFLAGS += ${PLUGIN_LDFLAGS}
LIBS := -L../../../src -lobjfw ${LIBS}