From 6693da181896544757684e9f5c91e183b2666af7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Fauconnier?= Date: Fri, 11 Sep 2020 08:59:00 +0200 Subject: [PATCH] moved third party define and include in Win32 config (only used there now) --- OpenBoard.pro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OpenBoard.pro b/OpenBoard.pro index 74583fce..da285a9b 100644 --- a/OpenBoard.pro +++ b/OpenBoard.pro @@ -1,8 +1,6 @@ TARGET = "OpenBoard" TEMPLATE = app -THIRD_PARTY_PATH=../OpenBoard-ThirdParty - CONFIG += c++14 CONFIG -= flat CONFIG += debug_and_release \ @@ -46,7 +44,6 @@ QT += core INCLUDEPATH += src -include($$THIRD_PARTY_PATH/libs.pri) include(src/adaptors/adaptors.pri) include(src/api/api.pri) include(src/board/board.pri) @@ -118,6 +115,9 @@ win32 { LIBS += -lAdvApi32 LIBS += -lOle32 + THIRD_PARTY_PATH=../OpenBoard-ThirdParty + include($$THIRD_PARTY_PATH/libs.pri) + DEPENDPATH += $$THIRD_PARTY_PATH/quazip/ INCLUDEPATH += $$THIRD_PARTY_PATH/quazip/ include($$THIRD_PARTY_PATH/quazip/quazip.pri)