summaryrefslogtreecommitdiffstats
path: root/addon/doxmlparser/test
diff options
context:
space:
mode:
Diffstat (limited to 'addon/doxmlparser/test')
-rw-r--r--addon/doxmlparser/test/CMakeLists.txt15
-rw-r--r--addon/doxmlparser/test/Makefile.in15
-rw-r--r--addon/doxmlparser/test/xmlparse.pro.in20
3 files changed, 15 insertions, 35 deletions
diff --git a/addon/doxmlparser/test/CMakeLists.txt b/addon/doxmlparser/test/CMakeLists.txt
new file mode 100644
index 0000000..c38c8a5
--- /dev/null
+++ b/addon/doxmlparser/test/CMakeLists.txt
@@ -0,0 +1,15 @@
+
+include_directories(
+ ../include
+ ${CMAKE_SOURCE_DIR}/qtools
+)
+
+add_executable(doxmlparser_test
+main.cpp
+)
+
+
+target_link_libraries(doxmlparser_test
+ doxmlparser
+ qtools
+)
diff --git a/addon/doxmlparser/test/Makefile.in b/addon/doxmlparser/test/Makefile.in
deleted file mode 100644
index 87b1829..0000000
--- a/addon/doxmlparser/test/Makefile.in
+++ /dev/null
@@ -1,15 +0,0 @@
-all clean depend: Makefile.xmlparse
- $(MAKE) -f Makefile.xmlparse $@
-
-distclean: clean
- $(RM) -rf Makefile.xmlparse xmlparse.pro Makefile obj
-
-realclean: distclean
-
-tmake:
- $(ENV) $(PERL) $(TMAKE) xmlparse.pro >Makefile.xmlparse
-
-Makefile.xmlparse: xmlparse.pro
- $(ENV) $(PERL) $(TMAKE) xmlparse.pro >Makefile.xmlparse
-
-install:
diff --git a/addon/doxmlparser/test/xmlparse.pro.in b/addon/doxmlparser/test/xmlparse.pro.in
deleted file mode 100644
index 368d499..0000000
--- a/addon/doxmlparser/test/xmlparse.pro.in
+++ /dev/null
@@ -1,20 +0,0 @@
-TEMPLATE = app.t
-CONFIG = console warn_on $extraopts
-HEADERS =
-SOURCES = main.cpp
-unix:LIBS += -L../../../lib -ldoxmlparser -lqtools
-win32:INCLUDEPATH += .
-win32-mingw:LIBS += -L../../../lib -ldoxmlparser -lqtools
-win32-msvc:LIBS += doxmlparser.lib qtools.lib shell32.lib
-win32-msvc:TMAKE_LFLAGS += /LIBPATH:..\..\..\lib;..\lib
-win32-borland:LIBS += doxmlparser.lib qtools.lib shell32.lib
-win32-borland:TMAKE_LFLAGS += -L..\..\..\lib
-win32:TMAKE_CXXFLAGS += -DQT_NODLL
-DESTDIR = ../../../bin
-OBJECTS_DIR = ../../../objects/doxmlparser/test
-TARGET = xmlparse
-INCLUDEPATH += ../../../qtools ../include
-DEPENDPATH += ../include
-unix:TARGETDEPS = ../../../lib/libdoxmlparser.a
-win32:TARGETDEPS = ..\..\..\lib\doxmlparser.lib
-