diff options
author | David Robillard <d@drobilla.net> | 2007-11-30 07:38:42 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-11-30 07:38:42 +0000 |
commit | e9c7107df9dd2001498cae65aa6ad898fbf7d2f7 (patch) | |
tree | 3f0d33555a7bc18a544b19aab99b9a4504446c92 /tests | |
parent | 9988890730832ebd0a5f5a64a74eb0a2e65c1de4 (diff) | |
download | raul-e9c7107df9dd2001498cae65aa6ad898fbf7d2f7.tar.gz raul-e9c7107df9dd2001498cae65aa6ad898fbf7d2f7.tar.bz2 raul-e9c7107df9dd2001498cae65aa6ad898fbf7d2f7.zip |
Split redland C++ wrappers out from Raul.
git-svn-id: http://svn.drobilla.net/lad/raul@927 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 7 | ||||
-rw-r--r-- | tests/rdf_test.cpp | 8 |
2 files changed, 2 insertions, 13 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 2823a8d..63c23bc 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,7 +1,7 @@ if BUILD_UNIT_TESTS -AM_CXXFLAGS = -I.. @REDLAND_CFLAGS@ @GLIBMM_CFLAGS@ @GTHREAD_CFLAGS@ # -DTABLE_SORT_DEBUG -ALL_LIBS = @REDLAND_LIBS@ @GLIBMM_LIBS@ @GTHREAD_LIBS@ ../src/libraul.la +AM_CXXFLAGS = -I.. @REDLANDMM_CFLAGS@ @GLIBMM_CFLAGS@ @GTHREAD_CFLAGS@ # -DTABLE_SORT_DEBUG +ALL_LIBS = @REDLANDMM_LIBS@ @GLIBMM_LIBS@ @GTHREAD_LIBS@ ../src/libraul.la noinst_PROGRAMS = \ path_test \ @@ -14,7 +14,6 @@ noinst_PROGRAMS = \ time_test \ quantize_test \ smf_test \ - rdf_test \ table_test thread_test_LDADD = $(ALL_LIBS) @@ -27,7 +26,6 @@ list_test_LDADD = $(ALL_LIBS) time_test_LDADD = $(ALL_LIBS) quantize_test_LDADD = $(ALL_LIBS) smf_test_LDADD = $(ALL_LIBS) -rdf_test_LDADD = $(ALL_LIBS) table_test_LDADD = $(ALL_LIBS) path_test_SOURCES = path_test.cpp @@ -40,7 +38,6 @@ list_test_SOURCES = list_test.cpp time_test_SOURCES = time_test.cpp quantize_test_SOURCES = quantize_test.cpp smf_test_SOURCES = smf_test.cpp -rdf_test_SOURCES = rdf_test.cpp table_test_SOURCES = table_test.cpp endif diff --git a/tests/rdf_test.cpp b/tests/rdf_test.cpp deleted file mode 100644 index afb1887..0000000 --- a/tests/rdf_test.cpp +++ /dev/null @@ -1,8 +0,0 @@ -#include <raul/RDFModel.hpp> -#include <raul/RDFQuery.hpp> - -int -main() -{ - return 0; -} |