From e4836b1738de63ec7d721cb796c3977f32c7e234 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Wed, 11 Mar 2015 00:11:28 +0100 Subject: [PATCH] Remove libHPCS from the source tree and link dynamically against libHPCS.so (Unix) --- Anyanka.pro | 7 +++---- datafilesloader.h | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Anyanka.pro b/Anyanka.pro index 0b98519..5d55a14 100644 --- a/Anyanka.pro +++ b/Anyanka.pro @@ -12,6 +12,9 @@ TEMPLATE = app unix { QMAKE_CXXFLAGS += -std=c++11 -Wall -Wextra + # You may want to adjust these paths based on the location of libHPCS on your system + INCLUDEPATH += $$PWD/libHPCS/include + LIBS += -L$$PWD/libHPCS/build -lHPCS } win32 { # Add project root directory to work around VC11 include path scheme @@ -19,8 +22,6 @@ win32 { INCLUDEPATH += "./libHPCS" } -DEFINES += _HPCS_LITTLE_ENDIAN - CONFIG(debug, debug|release) { DEFINES += ANYANKA_DEBUG message("Debug build") @@ -58,7 +59,6 @@ SOURCES += main.cpp\ imagedrawer.cpp \ signaldrawer.cpp \ jsonserializable.cpp \ - libHPCS/libhpcs.c \ gui/failedfilesdialog.cpp \ helpers.cpp \ usersettings.cpp @@ -95,7 +95,6 @@ HEADERS += \ enumflags.h \ jsonserializable.h \ helpers.h \ - libHPCS/libhpcs.h \ gui/failedfilesdialog.h \ usersettings.h diff --git a/datafilesloader.h b/datafilesloader.h index 1bc4a71..f38f604 100644 --- a/datafilesloader.h +++ b/datafilesloader.h @@ -24,7 +24,7 @@ #ifndef DATAFILESLOADER_H #define DATAFILESLOADER_H -#include "libHPCS/libhpcs.h" +#include "libhpcs.h" #include #include #include -- 2.43.5