mirror of
https://github.com/QuasarApp/pe-parse.git
synced 2025-04-29 13:54:33 +00:00
24 lines
538 B
Plaintext
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"
|
|
|
|
|
|
|