diff --git a/server-sdk.pri b/server-sdk.pri new file mode 100644 index 0000000..a178c84 --- /dev/null +++ b/server-sdk.pri @@ -0,0 +1 @@ +include($$PWD/src/core/core.pri) diff --git a/src/core/core.pri b/src/core/core.pri index ab2f3b6..da112a9 100644 --- a/src/core/core.pri +++ b/src/core/core.pri @@ -1,4 +1,4 @@ -INCLUDEPATH += $$PWD +INCLUDEPATH += $$PWD/.. CONFIG += c++14 #SRC_DIR = $$PWD message($$PWD) diff --git a/src/testapp/main.cpp b/src/testapp/main.cpp index a2af698..11e882a 100644 --- a/src/testapp/main.cpp +++ b/src/testapp/main.cpp @@ -1,4 +1,4 @@ -#include "core.h" +#include "core/core.h" #include #include diff --git a/test/unittests/tst_request.cpp b/test/unittests/tst_request.cpp index d1417c7..5d7a2bc 100644 --- a/test/unittests/tst_request.cpp +++ b/test/unittests/tst_request.cpp @@ -1,6 +1,6 @@ #include "tst_request.h" -#include "request.h" +#include "core/request.h" namespace core {