1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
|
#-------------------------------------------------
#
# Project created by QtCreator 2013-05-10T22:49:41
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport multimedia
CONFIG += exceptions_off warn_on
TARGET = ponyprog
TEMPLATE = app
DESTDIR = build
OBJECTS_DIR = $$DESTDIR/.obj
MOC_DIR = $$DESTDIR/.moc
RCC_DIR = $$DESTDIR/.qrc
UI_DIR = $$DESTDIR/.ui
RC_ICONS = icons/ponyprog.ico
APP_NAME = "PonyProg"
APP_LOW_NAME = "ponyprog"
APP_LOW_H_NAME = ".ponyprog"
APP_AUTHOR = "Claudio Lanconelli"
APP_YEAR = "2022"
#APP_COPYRIGHT = "(C) 1997-$$APP_YEAR $$APP_AUTHOR"
APP_VERSION = "3.1.3"
# APP_BUILD_DATE = $$_DATE_
APP_LONG_NAME = "$$APP_NAME $$APP_VERSION"
APP_EMAIL = "PonyProg2000@gmail.com"
APP_URL = "https://github.com/lancos/ponyprog/"
APP_URL_ISSUES = "https://github.com/lancos/ponyprog/issues"
APP_URL_WIKI = "https://github.com/lancos/ponyprog/wiki"
APP_USERAGENT = "PonyProg/$$APP_VERSION (github.com/lancos/ponyprog)"
# replace it with yours info for donates
# APP_DONATE_URL = "https://goo.gl/YFVJ0j"
win32 {
APP_BUILD_DATE = $$system(date /t)
} else {
APP_BUILD_DATE = $$system(date +%d-%m-%Y)
}
# TODO: please check this
win32:INCLUDEPATH += $$PWD/windows
win32:DEPENDPATH += $$PWD/windows
win64:INCLUDEPATH += $$PWD/windows
win64:DEPENDPATH += $$PWD/windows
# TODO: please add this for macx
# macx
# in case of manually installations, not from repositories
unix:INCLUDEPATH +=/usr/local/include/
CODECFORTR = UTF-8
CODECFORSRC = UTF-8
exists(.git) {
APP_REVISION = $$system(git rev-parse --short HEAD)
APP_BRANCH = $$system(git rev-parse --abbrev-ref HEAD)
}
isEmpty(APP_REVISION) {
APP_REVISION = ""
}
isEmpty(APP_BRANCH) {
APP_BRANCH = ""
}
message(ponyprog: PonyProg version is: \"$$APP_VERSION\")
message(ponyprog: Detected Qt version: \"$$QT_VERSION\")
message(ponyprog: Build destination directory: \"$$DESTDIR\")
message(ponyprog: Prefix directory: \"$$PREFIX\")
message(ponyprog: Build revision: \"$$APP_REVISION\")
message(ponyprog: Build branch: \"$$APP_BRANCH\")
#message(ponyprog: lrelease executable name: \"$$LRELEASE_EXECUTABLE\")
# to add automatically in the source code
VERSION = $$APP_VERSION
versionconfig.input = SrcPony/version-qmake.h.in
versionconfig.output = $$PWD/SrcPony/version.h
QMAKE_SUBSTITUTES += versionconfig
# VERSION_FILE = $$OUT_PWD/SrcPony/version.h
# write_file...
win32 {
# Makes sure we use correct subsystem on Windows.
# !contains(QMAKE_TARGET.arch, x86_64) {
# message(rssguard: Compilling x86 variant.)
# QMAKE_LFLAGS_WINDOWS = /SUBSYSTEM:WINDOWS,5.01
# } else {
# message(rssguard: Compilling x86_64 variant.)
# QMAKE_LFLAGS_WINDOWS = /SUBSYSTEM:WINDOWS,5.02
# }
# QMAKE_TARGET_COMPANY = $$APP_AUTHOR
# QMAKE_TARGET_DESCRIPTION = $$APP_NAME
# QMAKE_TARGET_COPYRIGHT = $$APP_COPYRIGHT
# QMAKE_TARGET_PRODUCT = $$APP_NAME
}
INCLUDEPATH += qhexedit2/src
SOURCES += SrcPony/aboutmdlg.cpp \
SrcPony/main.cpp \
SrcPony/e2app.cpp \
SrcPony/at25xxx.cpp \
SrcPony/at93cbus.cpp \
SrcPony/crc.cpp \
SrcPony/e24xx-1.cpp \
SrcPony/e24xx-2.cpp \
SrcPony/e24xx.cpp \
SrcPony/e24xx-5.cpp \
SrcPony/e2profil.cpp \
SrcPony/fusemdlg.cpp \
SrcPony/bitfield.cpp \
SrcPony/blockmdlg.cpp \
SrcPony/intfbuf.cpp \
SrcPony/lpt_io_interf.cpp \
SrcPony/pgminter.cpp \
SrcPony/picbus.cpp \
SrcPony/progoption.cpp \
SrcPony/sernumdlg.cpp \
SrcPony/x2444.cpp \
SrcPony/at17xxx.cpp \
SrcPony/at89sbus.cpp \
SrcPony/at93cxx8.cpp \
SrcPony/csmfbuf.cpp \
SrcPony/e2cmdw.cpp \
SrcPony/e2awinfo.cpp \
SrcPony/easyi2c_interf.cpp \
SrcPony/i2cbus.cpp \
SrcPony/ispinterf.cpp \
SrcPony/microbus.cpp \
SrcPony/pic125xx.cpp \
SrcPony/picbusnew.cpp \
SrcPony/spi-bus.cpp \
SrcPony/at250bus2.cpp \
SrcPony/at89sxx.cpp \
SrcPony/at93cxx.cpp \
SrcPony/device.cpp \
SrcPony/eeptypes.cpp \
SrcPony/imbus.cpp \
SrcPony/linuxsysfsint.cpp \
SrcPony/pic12bus.cpp \
SrcPony/ponyioint.cpp \
SrcPony/rs232int.cpp \
SrcPony/at250bus.cpp \
SrcPony/at90sbus.cpp \
SrcPony/binfbuf.cpp \
SrcPony/dt006interf.cpp \
SrcPony/e2dlg.cpp \
SrcPony/filebuf.cpp \
SrcPony/infomdlg.cpp \
SrcPony/lpt_ext_interf.cpp \
SrcPony/motsfbuf.cpp \
SrcPony/pic168xx.cpp \
SrcPony/portint.cpp \
SrcPony/sde2506.cpp \
SrcPony/wait.cpp \
SrcPony/at250xx.cpp \
SrcPony/at90sxx.cpp \
SrcPony/busio.cpp \
SrcPony/e2401.cpp \
SrcPony/e2pfbuf.cpp \
SrcPony/filldlg.cpp \
SrcPony/interfconv.cpp \
SrcPony/lptinterf.cpp \
SrcPony/mpsse_interf.cpp \
SrcPony/nvm3060.cpp \
SrcPony/pic16xx.cpp \
SrcPony/x2444bus.cpp \
SrcPony/sdebus.cpp \
SrcPony/Translator.cpp \
SrcPony/usbwatcher.cpp \
SrcPony/prefdialog.cpp \
qhexedit2/src/chunks.cpp \
qhexedit2/src/commands.cpp \
qhexedit2/src/qhexedit.cpp
HEADERS += SrcPony/e2app.h \
SrcPony/e2awinfo.h \
SrcPony/e2cmdw.h \
SrcPony/globals.h \
SrcPony/device.h \
SrcPony/microbus.h \
SrcPony/aboutmdlg.h \
SrcPony/at25xxx.h \
SrcPony/at93cbus.h \
SrcPony/busio.h \
SrcPony/dt006interf.h \
SrcPony/e24xx.h \
SrcPony/e2dlg.h \
SrcPony/eeptypes.h \
SrcPony/ispinterf.h \
SrcPony/lpt_io_interf.h \
SrcPony/pgminter.h \
SrcPony/picbus.h \
SrcPony/sde2506.h \
SrcPony/at17xxx.h \
SrcPony/at89sbus.h \
SrcPony/at93cxx8.h \
SrcPony/e2401.h \
SrcPony/e2pfbuf.h \
SrcPony/errcode.h \
SrcPony/i2cbus.h \
SrcPony/jdminter.h \
SrcPony/pic125xx.h \
SrcPony/picbusnew.h \
SrcPony/progoption.h \
SrcPony/sdebus.h \
SrcPony/types.h \
SrcPony/at250bus2.h \
SrcPony/at89sxx.h \
SrcPony/at93cxx.h \
SrcPony/crc.h \
SrcPony/e24xx-1.h \
SrcPony/e2phead.h \
SrcPony/filebuf.h \
SrcPony/imbus.h \
SrcPony/linuxsysfsint.h \
SrcPony/pic12bus.h \
SrcPony/ponyioint.h \
SrcPony/resource.h \
SrcPony/sernumdlg.h \
SrcPony/wait.h \
SrcPony/at250bus.h \
SrcPony/at90sbus.h \
SrcPony/binfbuf.h \
SrcPony/csmfbuf.h \
SrcPony/e24xx-2.h \
SrcPony/e2profil.h \
SrcPony/filldlg.h \
SrcPony/infomdlg.h \
SrcPony/lpt_ext_interf.h \
SrcPony/motsfbuf.h \
SrcPony/pic168xx.h \
SrcPony/portint.h \
SrcPony/spi-bus.h \
SrcPony/x2444bus.h \
SrcPony/at250xx.h \
SrcPony/at90sxx.h \
SrcPony/businter.h \
SrcPony/e24xx-5.h \
SrcPony/easyi2c_interf.h \
SrcPony/fusemdlg.h \
SrcPony/bitfield.h \
SrcPony/blockmdlg.h \
SrcPony/intfbuf.h \
SrcPony/lptinterf.h \
SrcPony/mpsse_interf.h \
SrcPony/nvm3060.h \
SrcPony/pic16xx.h \
SrcPony/ppuser.h \
SrcPony/rs232int.h \
SrcPony/x2444.h \
SrcPony/Translator.h \
SrcPony/interfconv.h \
SrcPony/usbwatcher.h \
SrcPony/prefdialog.h \
qhexedit2/src/chunks.h \
qhexedit2/src/commands.h \
qhexedit2/src/qhexedit.h
FORMS += SrcPony/forms/aboutdlg.ui \
SrcPony/forms/editdlg.ui \
SrcPony/forms/bitfield.ui \
SrcPony/forms/notesdlg.ui \
SrcPony/forms/e2dlg.ui \
SrcPony/forms/fusedlg.ui \
SrcPony/forms/mainwindow.ui \
SrcPony/forms/osccalibr.ui \
SrcPony/forms/progoption.ui \
SrcPony/forms/sernumcfg.ui \
SrcPony/forms/prefdialog.ui
# for next version, when script for ts files convertion is implemented
#TRANSLATIONS += localization/qtbase_cs.ts
# TODO: please check this
#win32:LIBS += -L$$PWD/windows/
#win64:LIBS += -L$$PWD/windows/
# TODO: please add this for macx
# macx:LIBS +=
# in case of manually installations, not from repositories
unix:!macx: LIBS += -L/usr/local/lib
#libftdi
unix:!macx: QMAKE_CXXFLAGS += $$system(pkg-config libftdipp1 --cflags)
unix:!macx: LIBS += $$system(pkg-config libftdipp1 --libs)
win32 {
isEmpty(FTDIPATH): FTDIPATH = c:/libftdi1-1.4git_devkit_x86_x64_14June2018
!isEmpty(BOOSTPATH): QMAKE_CXXFLAGS += -I $$BOOSTPATH
QMAKE_CXXFLAGS += -I $$FTDIPATH/include/libftdi -I $$FTDIPATH/include/libusb-1.0 -I $$FTDIPATH/include
LIBS += -L $$FTDIPATH/lib32 -lftdipp1 -lftdi1 -lusb-1.0
}
# # Make sure QM translations are generated.
# lrelease.input = TRANSLATIONS
# lrelease.output = $$OUT_PWD/translations/${QMAKE_FILE_BASE}.qm
# lrelease.commands = $$LRELEASE_EXECUTABLE -compress ${QMAKE_FILE_IN} -qm $$OUT_PWD/translations/${QMAKE_FILE_BASE}.qm
# lrelease.CONFIG += no_link target_predeps
# # Create new "make lupdate" target.
# lupdate.target = lupdate
# lupdate.commands = lupdate $$shell_path($$PWD/rssguard.pro) -ts $$shell_path($$TRANSLATIONS_WO_QT)
#
# QMAKE_EXTRA_TARGETS += lupdate
# QMAKE_EXTRA_COMPILERS += lrelease
RESOURCES += SrcPony/ponyprog.qrc
CONFIG(debug, debug|release) {
# debug configuration
# QMAKE_CXXFLAGS_DEBUG += ...
} else {
# release configuration
#QMAKE_CXXFLAGS_RELEASE -= -O2
#QMAKE_CXXFLAGS_RELEASE += -O3
#QMAKE_CXXFLAGS_RELEASE += -fno-exceptions -fno-rtti
DEFINES += QT_NO_DEBUG_OUTPUT QT_USE_FAST_CONCATENATION QT_USE_FAST_OPERATOR_PLUS
}
# -Wall are already on the command line (where does it come from?)
# for old GCC -std=c++11 move to -std=c++0x
QMAKE_CXXFLAGS += -Wno-unused-parameter
unix: QMAKE_CXXFLAGS += -std=c++11
# EK 2017
win32 {
target.path = $$PWD/distribution/innosetup
ponydeploy.path = $$PWD/distribution/innosetup
ponydeploy.extra = windeployqt --no-angle --no-opengl-sw --release --list relative $$PWD/distribution/innosetup/${TARGET}
lang.path = $$PWD/distribution/innosetup/lang
lang.files = lang/*
inpoutdll.path = $$PWD/distribution/innosetup
inpoutdll.files = InpOutLib/Win32/inpout32.dll
inpoutexe.path = $$PWD/distribution/innosetup
inpoutexe.files = InpOutLib/InstallDriver/InstallDriver.exe
#DEPLOY_TARGET = $$shell_quote($$shell_path($${OUT_PWD}/release/$${TARGET}$${TARGET_CUSTOM_EXT}))
# isEmpty(QTDIR):QTDIR = "c:/Qt/Qt$$QT_VERSION/$$QT_VERSION/mingw530_32"
# isEmpty(MINGWDIR):MINGWDIR = "c:/Qt/Qt$$QT_VERSION/Tools/mingw530_32"
# isEmpty(ISCC):ISCC = "c:\Program Files\Inno Setup 5\ISCC.exe"
isEmpty(ISCC):ISCC = ISCC.exe
# message(ponyprog: MINGWdir: \"$$MINGWDIR\")
message(ponyprog: ISCCdir: \"$$ISCC\")
win32setup.depends = install
win32setup.target = win32setup
win32setup.commands = echo "$$ISCC /DAPPNAME=$$APP_NAME /DAPPVERSION=$$APP_VERSION /DAPPYEAR=$$APP_YEAR $$PWD/distribution/innosetup/ponyprog.iss" >ponyprog.bat
QMAKE_EXTRA_TARGETS += win32setup
INSTALLS += target lang inpoutexe inpoutdll ponydeploy
#QMAKE_POST_LINK = windeployqt --no-angle --no-opengl-sw --release --list relative ${TARGET}
}
# Install all files on Linux.
unix:!mac {
target.path = $$PREFIX/bin
misc_texts.files = $$TEXTS
misc_texts.path = $$quote($$PREFIX/share/$$TARGET/information/)
desktop_file.files = desktop/$${TARGET}.desktop
desktop_file.path = $$quote($$PREFIX/share/applications/)
translations.files = $$OUT_PWD/lang
translations.path = $$quote($$PREFIX/share/$$TARGET/lang/)
INSTALLS += target misc_texts \
desktop_file translations
}
mac {
CONFIG -= app_bundle
target.path = $$quote($$PREFIX/Contents/MacOs/)
misc_texts.files = $$TEXTS
misc_texts.path = $$quote($$PREFIX/Contents/Resources/information/)
translations.files = $$OUT_PWD/lang
translations.path = $$quote($$PREFIX/Contents/Resources/lang/)
INSTALLS += target misc_texts translations
}
|