mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
20 lines
368 B
Makefile
20 lines
368 B
Makefile
|
#
|
||
|
# Makefile
|
||
|
#
|
||
|
# Makefile for Poco JWT testsuite
|
||
|
#
|
||
|
|
||
|
include $(POCO_BASE)/build/rules/global
|
||
|
|
||
|
objects = SerializerTest TokenTest SignerTest JWTTestSuite Driver
|
||
|
|
||
|
target = testrunner
|
||
|
target_version = 1
|
||
|
target_libs = PocoJWT PocoJSON PocoCrypto PocoFoundation CppUnit
|
||
|
|
||
|
include $(POCO_BASE)/build/rules/exec
|
||
|
|
||
|
ifdef POCO_UNBUNDLED
|
||
|
SYSLIBS += -lpcre
|
||
|
endif
|