move targets and processor into separate dirs
authorkonrad <konrad@6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33>
Wed, 28 Jul 2010 06:37:23 +0000 (06:37 +0000)
committerkonrad <konrad@6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33>
Wed, 28 Jul 2010 06:37:23 +0000 (06:37 +0000)
git-svn-id: https://silmor.de/svn/softmagic/pack/trunk@576 6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33

36 files changed:
woc/php/php.pri [new file with mode: 0644]
woc/php/phpclass.cpp [moved from woc/phpclass.cpp with 100% similarity]
woc/php/phpclass.h [moved from woc/phpclass.h with 100% similarity]
woc/php/phpconst.h [moved from woc/phpconst.h with 100% similarity]
woc/php/phpctrans.cpp [moved from woc/phpctrans.cpp with 100% similarity]
woc/php/phpctrans.h [moved from woc/phpctrans.h with 100% similarity]
woc/php/phpdb.cpp [moved from woc/phpdb.cpp with 100% similarity]
woc/php/phpdb.h [moved from woc/phpdb.h with 100% similarity]
woc/php/phpout.cpp [moved from woc/phpout.cpp with 100% similarity]
woc/php/phpout.h [moved from woc/phpout.h with 100% similarity]
woc/php/phpstrans.cpp [moved from woc/phpstrans.cpp with 100% similarity]
woc/php/phpstrans.h [moved from woc/phpstrans.h with 100% similarity]
woc/php/phptrans.cpp [moved from woc/phptrans.cpp with 100% similarity]
woc/php/phptrans.h [moved from woc/phptrans.h with 100% similarity]
woc/proc/proc.pri [new file with mode: 0644]
woc/proc/procclass.cpp [moved from woc/procclass.cpp with 100% similarity]
woc/proc/procclass.h [moved from woc/procclass.h with 100% similarity]
woc/proc/processor.cpp [moved from woc/processor.cpp with 100% similarity]
woc/proc/processor.h [moved from woc/processor.h with 100% similarity]
woc/proc/proctable.cpp [moved from woc/proctable.cpp with 100% similarity]
woc/proc/proctable.h [moved from woc/proctable.h with 100% similarity]
woc/proc/proctrans.cpp [moved from woc/proctrans.cpp with 100% similarity]
woc/proc/proctrans.h [moved from woc/proctrans.h with 100% similarity]
woc/qt/qt.pri [new file with mode: 0644]
woc/qt/qtclass.cpp [moved from woc/qtclass.cpp with 100% similarity]
woc/qt/qtclass.h [moved from woc/qtclass.h with 100% similarity]
woc/qt/qtconst.h [moved from woc/qtconst.h with 100% similarity]
woc/qt/qtctrans.cpp [moved from woc/qtctrans.cpp with 100% similarity]
woc/qt/qtctrans.h [moved from woc/qtctrans.h with 100% similarity]
woc/qt/qtdb.cpp [moved from woc/qtdb.cpp with 100% similarity]
woc/qt/qtdb.h [moved from woc/qtdb.h with 100% similarity]
woc/qt/qtout.cpp [moved from woc/qtout.cpp with 100% similarity]
woc/qt/qtout.h [moved from woc/qtout.h with 100% similarity]
woc/qt/qtstrans.cpp [moved from woc/qtstrans.cpp with 100% similarity]
woc/qt/qtstrans.h [moved from woc/qtstrans.h with 100% similarity]
woc/woc.pro

diff --git a/woc/php/php.pri b/woc/php/php.pri
new file mode 100644 (file)
index 0000000..93f22a7
--- /dev/null
@@ -0,0 +1,16 @@
+SOURCES+= \
+       php/phpout.cpp \
+       php/phpclass.cpp \
+       php/phptrans.cpp \
+       php/phpctrans.cpp \
+       php/phpstrans.cpp \
+       php/phpdb.cpp
+HEADERS+= \
+       php/phpout.h \
+       php/phpdb.h \
+       php/phpclass.h \
+       php/phptrans.h \
+       php/phpctrans.h \
+       php/phpstrans.h
+
+INCLUDEPATH += php
similarity index 100%
rename from woc/phpclass.cpp
rename to woc/php/phpclass.cpp
similarity index 100%
rename from woc/phpclass.h
rename to woc/php/phpclass.h
similarity index 100%
rename from woc/phpconst.h
rename to woc/php/phpconst.h
similarity index 100%
rename from woc/phpctrans.cpp
rename to woc/php/phpctrans.cpp
similarity index 100%
rename from woc/phpctrans.h
rename to woc/php/phpctrans.h
similarity index 100%
rename from woc/phpdb.cpp
rename to woc/php/phpdb.cpp
similarity index 100%
rename from woc/phpdb.h
rename to woc/php/phpdb.h
similarity index 100%
rename from woc/phpout.cpp
rename to woc/php/phpout.cpp
similarity index 100%
rename from woc/phpout.h
rename to woc/php/phpout.h
similarity index 100%
rename from woc/phpstrans.cpp
rename to woc/php/phpstrans.cpp
similarity index 100%
rename from woc/phpstrans.h
rename to woc/php/phpstrans.h
similarity index 100%
rename from woc/phptrans.cpp
rename to woc/php/phptrans.cpp
similarity index 100%
rename from woc/phptrans.h
rename to woc/php/phptrans.h
diff --git a/woc/proc/proc.pri b/woc/proc/proc.pri
new file mode 100644 (file)
index 0000000..58acc4d
--- /dev/null
@@ -0,0 +1,12 @@
+SOURCES+= \
+       processor.cpp \
+       procclass.cpp \
+       proctrans.cpp \
+       proctable.cpp
+HEADERS+= \
+       processor.h \
+       procclass.h \
+       proctrans.h \
+       proctable.h
+
+INCLUDEPATH += proc
\ No newline at end of file
similarity index 100%
rename from woc/procclass.cpp
rename to woc/proc/procclass.cpp
similarity index 100%
rename from woc/procclass.h
rename to woc/proc/procclass.h
similarity index 100%
rename from woc/processor.cpp
rename to woc/proc/processor.cpp
similarity index 100%
rename from woc/processor.h
rename to woc/proc/processor.h
similarity index 100%
rename from woc/proctable.cpp
rename to woc/proc/proctable.cpp
similarity index 100%
rename from woc/proctable.h
rename to woc/proc/proctable.h
similarity index 100%
rename from woc/proctrans.cpp
rename to woc/proc/proctrans.cpp
similarity index 100%
rename from woc/proctrans.h
rename to woc/proc/proctrans.h
diff --git a/woc/qt/qt.pri b/woc/qt/qt.pri
new file mode 100644 (file)
index 0000000..912dcdb
--- /dev/null
@@ -0,0 +1,15 @@
+SOURCES+= \
+       qt/qtout.cpp \
+       qt/qtclass.cpp \
+       qt/qtdb.cpp \
+       qt/qtctrans.cpp \
+       qt/qtstrans.cpp
+
+HEADERS+= \
+       qt/qtout.h \
+       qt/qtclass.h \
+       qt/qtdb.h \
+       qt/qtctrans.h \
+       qt/qtstrans.cpp
+
+INCLUDEPATH += qt
\ No newline at end of file
similarity index 100%
rename from woc/qtclass.cpp
rename to woc/qt/qtclass.cpp
similarity index 100%
rename from woc/qtclass.h
rename to woc/qt/qtclass.h
similarity index 100%
rename from woc/qtconst.h
rename to woc/qt/qtconst.h
similarity index 100%
rename from woc/qtctrans.cpp
rename to woc/qt/qtctrans.cpp
similarity index 100%
rename from woc/qtctrans.h
rename to woc/qt/qtctrans.h
similarity index 100%
rename from woc/qtdb.cpp
rename to woc/qt/qtdb.cpp
similarity index 100%
rename from woc/qtdb.h
rename to woc/qt/qtdb.h
similarity index 100%
rename from woc/qtout.cpp
rename to woc/qt/qtout.cpp
similarity index 100%
rename from woc/qtout.h
rename to woc/qt/qtout.h
similarity index 100%
rename from woc/qtstrans.cpp
rename to woc/qt/qtstrans.cpp
similarity index 100%
rename from woc/qtstrans.h
rename to woc/qt/qtstrans.h
index 839d05c..ff1a5f9 100644 (file)
@@ -12,41 +12,18 @@ RCC_DIR = .ctmp
 
 
 SOURCES+= \
-       processor.cpp \
-       procclass.cpp \
-       proctrans.cpp \
-       proctable.cpp \
        woc.cpp \
-       qtout.cpp \
-       qtclass.cpp \
-       qtdb.cpp \
-       qtctrans.cpp \
-       qtstrans.cpp \
-       phpout.cpp \
-       phpclass.cpp \
-       phptrans.cpp \
-       phpctrans.cpp \
-       phpstrans.cpp \
-       phpdb.cpp \
        htmlout.cpp \
        mfile.cpp \
        domquery.cpp
 HEADERS+= \
-       processor.h \
-       procclass.h \
-       proctrans.h \
-       proctable.h \
-       phpout.h \
-       phpdb.h \
-       phpclass.h \
-       phptrans.h \
-       phpctrans.h \
-       phpstrans.h \
-       qtout.h \
-       qtclass.h \
-       qtdb.h \
-       qtctrans.h \
-       qtstrans.cpp \
        htmlout.h \
        mfile.h \
        domquery.h
+
+include(proc/proc.pri)
+include(php/php.pri)
+include(qt/qt.pri)
+
+#make sure dependencies are found
+DEPENDPATH += $$INCLUDEPATH