From: APTX Date: Tue, 11 Aug 2009 16:09:06 +0000 (+0200) Subject: - Add convenience headers X-Git-Url: https://gitweb.tyo.aptx.org/?a=commitdiff_plain;h=4a31ba2efa33a7c48872376d7e47992a13e837d7;p=anidbudpclient.git - Add convenience headers --- diff --git a/anidbudpclient.pri b/anidbudpclient.pri index 10bcec5..3dcdb4b 100644 --- a/anidbudpclient.pri +++ b/anidbudpclient.pri @@ -1,5 +1,5 @@ QT *= network script -INCLUDEPATH += $$PWD +INCLUDEPATH += $$PWD/include DEPENDPATH += $$PWD LIBS += -lanidbudpclient LIBS += -L$$DESTDIR diff --git a/anidbudpclient.pro b/anidbudpclient.pro index 52a6bf0..1aabbb3 100644 --- a/anidbudpclient.pro +++ b/anidbudpclient.pro @@ -15,13 +15,13 @@ static { } INCLUDEPATH += $$PWD DEPENDPATH += $$PWD -QT *= network + DEFINES += ANIDBUDPCLIENT_LIBRARY SOURCES += client.cpp \ abstractcommand.cpp \ authcommand.cpp \ rawcommand.cpp \ - mylistaddcommand.cpp \ + mylistaddcommand.cpp \ logoutcommand.cpp \ uptimecommand.cpp \ mylistcommand.cpp @@ -34,4 +34,12 @@ HEADERS += client.h \ logoutcommand.h \ uptimecommand.h \ mylistcommand.h + +CONV_HEADERS += include/AniDBUdpClient/Client \ + include/AniDBUdpClient/AbstractCommand \ + include/AniDBUdpClient/RawCommand \ + include/AniDBUdpClient/MyListCommand \ + include/AniDBUdpClient/MyListAddCommand \ + include/AniDBUdpClient/UptimeCommand + include(../../lib/qtstatemachine/src/qtstatemachine.pri) diff --git a/include/AniDBUdpClient/AbstractCommand b/include/AniDBUdpClient/AbstractCommand new file mode 100644 index 0000000..1e4030b --- /dev/null +++ b/include/AniDBUdpClient/AbstractCommand @@ -0,0 +1 @@ +#include "../../abstractcommand.h" \ No newline at end of file diff --git a/include/AniDBUdpClient/Client b/include/AniDBUdpClient/Client new file mode 100644 index 0000000..73445b3 --- /dev/null +++ b/include/AniDBUdpClient/Client @@ -0,0 +1 @@ +#include "../../client.h" \ No newline at end of file diff --git a/include/AniDBUdpClient/MyListAddCommand b/include/AniDBUdpClient/MyListAddCommand new file mode 100644 index 0000000..51dd0f2 --- /dev/null +++ b/include/AniDBUdpClient/MyListAddCommand @@ -0,0 +1 @@ +#include "../../mylistaddcommand.h" \ No newline at end of file diff --git a/include/AniDBUdpClient/MyListCommand b/include/AniDBUdpClient/MyListCommand new file mode 100644 index 0000000..5bf1b59 --- /dev/null +++ b/include/AniDBUdpClient/MyListCommand @@ -0,0 +1 @@ +#include "../../mylistcommand.h" \ No newline at end of file diff --git a/include/AniDBUdpClient/RawCommand b/include/AniDBUdpClient/RawCommand new file mode 100644 index 0000000..03bcb16 --- /dev/null +++ b/include/AniDBUdpClient/RawCommand @@ -0,0 +1 @@ +#include "../../rawcommand.h" \ No newline at end of file diff --git a/include/AniDBUdpClient/UptimeCommand b/include/AniDBUdpClient/UptimeCommand new file mode 100644 index 0000000..24e18a1 --- /dev/null +++ b/include/AniDBUdpClient/UptimeCommand @@ -0,0 +1 @@ +#include "../../uptimecommand.h" \ No newline at end of file