2019-03-23 20:39:36 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2018-2019 QuasarApp.
|
|
|
|
# Distributed under the lgplv3 software license, see the accompanying
|
|
|
|
# Everyone is permitted to copy and distribute verbatim copies
|
|
|
|
# of this license document, but changing it is not allowed.
|
|
|
|
#
|
|
|
|
|
2019-03-25 15:27:06 +03:00
|
|
|
!isEmpty(PE_LIB):error("pe-parser-library.pri already included")
|
2019-03-23 20:39:36 +03:00
|
|
|
PE_LIB = 1
|
|
|
|
|
|
|
|
#DEPENDS
|
|
|
|
CONFIG(release, debug|release): {
|
|
|
|
PE_LIB_OUTPUT_DIR="$$PWD/build/release"
|
|
|
|
} else {
|
|
|
|
PE_LIB_OUTPUT_DIR="$$PWD/build/debug"
|
|
|
|
}
|
|
|
|
|
2019-03-25 15:27:06 +03:00
|
|
|
LIBS += -L$$PE_LIB_OUTPUT_DIR -lpe-parser-library
|
2019-03-23 20:39:36 +03:00
|
|
|
|
2019-03-25 15:27:06 +03:00
|
|
|
INCLUDEPATH += "$$PWD/include"
|
2019-03-23 20:39:36 +03:00
|
|
|
|
|
|
|
|
|
|
|
|