pe-parse/pe-parser-library/pe-parser-library.pri
2019-03-25 15:27:06 +03:00

24 lines
538 B
Plaintext

#
# 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.
#
!isEmpty(PE_LIB):error("pe-parser-library.pri already included")
PE_LIB = 1
#DEPENDS
CONFIG(release, debug|release): {
PE_LIB_OUTPUT_DIR="$$PWD/build/release"
} else {
PE_LIB_OUTPUT_DIR="$$PWD/build/debug"
}
LIBS += -L$$PE_LIB_OUTPUT_DIR -lpe-parser-library
INCLUDEPATH += "$$PWD/include"