mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Added an Annotaions list member to avoid reparsing. Skipping directories before ignore-before date. Added a new app to dump STR.edf files. Still not complete.
33 lines
617 B
Prolog
33 lines
617 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by pholynyk 2019Aug01T21:00:00
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
message(Platform is $$QMAKESPEC )
|
|
|
|
CONFIG += c++11
|
|
CONFIG += rtti
|
|
CONFIG -= debug_and_release
|
|
|
|
QT += core widgets
|
|
|
|
TARGET = dumpSTR
|
|
|
|
TEMPLATE = app
|
|
|
|
QMAKE_TARGET_PRODUCT = dumpSTR
|
|
QMAKE_TARGET_COMPANY = The OSCAR Team
|
|
QMAKE_TARGET_COPYRIGHT = © 2019 The OSCAR Team
|
|
QMAKE_TARGET_DESCRIPTION = "OpenSource STR.edf Dumper"
|
|
VERSION = 0.5.0
|
|
|
|
SOURCES += \
|
|
dumpSTR/main.cpp \
|
|
dumpSTR/edfparser.cpp \
|
|
|
|
HEADERS += \
|
|
dumpSTR/common.h \
|
|
dumpSTR/edfparser.h \
|
|
|