diff options
author | methodus <methodus@web.de> | 2012-10-03 22:34:14 +0200 |
---|---|---|
committer | methodus <methodus@web.de> | 2012-10-03 22:34:14 +0200 |
commit | d3be5479f0a3eee76ab8b98b1c6488b3cf5e50a5 (patch) | |
tree | d9b424029362ced5c48bf39e4670688f68c3c89b /tests | |
parent | 8bfbe9ae40adccea37598b067340330521a9a5f8 (diff) | |
download | vdr-plugin-upnp-d3be5479f0a3eee76ab8b98b1c6488b3cf5e50a5.tar.gz vdr-plugin-upnp-d3be5479f0a3eee76ab8b98b1c6488b3cf5e50a5.tar.bz2 |
Splitted tools.h into several tool headers to avoid clashed for example when only requiring string tools but not ixml tools.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile index 41b056a..c8e6192 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,3 +1,6 @@ -tests: test_parser.cpp ../common/parser.cpp - g++ -o test_parser test_parser.cpp ../common/parser.cpp -I../include -I/usr/include -I/usr/local/include
\ No newline at end of file +parser: test_parser.cpp ../common/parser.cpp + g++ -o test_parser test_parser.cpp ../common/parser.cpp -g -I../include -I/usr/include -I/usr/local/include + +dllloader: dll_loader.cpp ../media/pluginManager.cpp ../common/tools.cpp + g++ -o test_dllloader dll_loader.cpp ../media/pluginManager.cpp ../common/tools.cpp -g -ldl -Wl,--export-dynamic -I../include -I/usr/include -I/usr/local/include
\ No newline at end of file |