refs #482 Project files changed to use new qmake feature files and build directory structure.

This commit is contained in:
Mathew Sutcliffe
2015-10-06 23:36:49 +01:00
parent dbb5a240da
commit 6b75de0b3f
24 changed files with 121 additions and 115 deletions

View File

@@ -1,3 +1,5 @@
load(common_pre)
TEMPLATE = lib
CONFIG += staticlib
CONFIG -= qt
@@ -6,15 +8,15 @@ DOXYFILE = Doxyfile.qmake
DOXY_INPUT = .
win32-g++ {
doxy.commands = set DOXY_SRC_ROOT=$$PWD\\..\\src & \
doxy.commands = set DOXY_SRC_ROOT=$$SourceRoot\\src & \
doxygen $$PWD/$$DOXYFILE
}
else:win32 {
doxy.commands = set DOXY_SRC_ROOT=$$PWD\\..\\src & \
doxy.commands = set DOXY_SRC_ROOT=$$SourceRoot\\src & \
doxygen $$PWD\\$$DOXYFILE
}
else {
doxy.commands = DOXY_SRC_ROOT="$$PWD/../src" \
doxy.commands = DOXY_SRC_ROOT="$$SourceRoot/src" \
doxygen $$PWD/$$DOXYFILE
}
doxy.CONFIG = no_link target_predeps
@@ -24,3 +26,5 @@ doxy.name = DOXY
doxy.output = html/index.html
QMAKE_EXTRA_COMPILERS += doxy
OTHER_FILES += Doxyfile.qmake
load(common_post)