From 878064a069e24ca0149bc79bd124621c0c4c392a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Thu, 2 Apr 2015 23:44:54 +0200 Subject: [PATCH] - Unix: Remove hardcoded libHPCS paths from the Makefile. Configure in the project options instead - Remove the information message about build mode switch --- Anyanka.pro | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Anyanka.pro b/Anyanka.pro index ae6be7f..60cb2e6 100644 --- a/Anyanka.pro +++ b/Anyanka.pro @@ -12,10 +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 - INCLUDEPATH += /home/madcat/Devel/C/libHPCS/include - LIBS += -L/home/madcat/Devel/C/libHPCS/build -lHPCS + # Unless libHPCS is installed in one of the directories commonly searched by your compiler, + # you will need to specify path to the library and its header in the project's configuration + LIBS += -lHPCS } win32 { # Add project root directory to work around VC11 include path scheme -- 2.43.5