fsw-qt.pro
88 lines
| 2.0 KiB
| text/idl
|
PrologLexer
/ FSW-qt / fsw-qt.pro
paul@pc-solar1.lab-lpp.local
|
r20 | TEMPLATE = app | ||
# CONFIG += console v8 sim | ||||
paul
|
r90 | # CONFIG options = verbose *** boot_messages *** debug_messages *** cpu_usage_report *** stack_report *** gsa *** vhdl_dev | ||
paul
|
r95 | CONFIG += console verbose debug_messages vhdl_dev cpu_usage_report | ||
paul@pc-solar1.lab-lpp.local
|
r20 | CONFIG -= qt | ||
include(./sparc.pri) | ||||
paul@pc-solar1.lab-lpp.local
|
r21 | # flight software version | ||
paul
|
r81 | SWVERSION=-1-0 | ||
paul
|
r82 | DEFINES += SW_VERSION_N1=1 # major | ||
DEFINES += SW_VERSION_N2=0 # minor | ||||
DEFINES += SW_VERSION_N3=0 # patch | ||||
paul
|
r84 | DEFINES += SW_VERSION_N4=1 # internal | ||
paul@pc-solar1.lab-lpp.local
|
r21 | |||
paul@pc-solar1.lab-lpp.local
|
r20 | contains( CONFIG, verbose ) { | ||
DEFINES += PRINT_MESSAGES_ON_CONSOLE | ||||
} | ||||
paul
|
r64 | contains( CONFIG, debug_messages ) { | ||
DEFINES += DEBUG_MESSAGES | ||||
} | ||||
paul@pc-solar1.lab-lpp.local
|
r20 | contains( CONFIG, cpu_usage_report ) { | ||
DEFINES += PRINT_TASK_STATISTICS | ||||
} | ||||
paul
|
r34 | contains( CONFIG, stack_report ) { | ||
DEFINES += PRINT_STACK_REPORT | ||||
} | ||||
paul
|
r35 | contains( CONFIG, boot_messages ) { | ||
DEFINES += BOOT_MESSAGES | ||||
} | ||||
paul
|
r40 | #doxygen.target = doxygen | ||
#doxygen.commands = doxygen ../doc/Doxyfile | ||||
#QMAKE_EXTRA_TARGETS += doxygen | ||||
paul@pc-solar1.lab-lpp.local
|
r22 | TARGET = fsw | ||
paul@pc-solar1.lab-lpp.local
|
r20 | contains( CONFIG, gsa ) { | ||
DEFINES += GSA | ||||
paul@pc-solar1.lab-lpp.local
|
r22 | TARGET = fsw-gsa | ||
paul@pc-solar1.lab-lpp.local
|
r20 | } | ||
paul
|
r90 | TARGET = fsw | ||
contains( CONFIG, vhdl_dev ) { | ||||
DEFINES += VHDL_DEV | ||||
paul
|
r91 | TARGET = fsw-vhdl-dev | ||
paul
|
r90 | } | ||
paul@pc-solar1.lab-lpp.local
|
r20 | INCLUDEPATH += \ | ||
../src \ | ||||
paul
|
r95 | ../header \ | ||
../../LFR_basic-parameters | ||||
paul@pc-solar1.lab-lpp.local
|
r20 | |||
SOURCES += \ | ||||
../src/wf_handler.c \ | ||||
../src/tc_handler.c \ | ||||
../src/fsw_processing.c \ | ||||
../src/fsw_misc.c \ | ||||
../src/fsw_init.c \ | ||||
paul
|
r33 | ../src/fsw_globals.c \ | ||
paul
|
r40 | ../src/fsw_spacewire.c \ | ||
../src/tc_load_dump_parameters.c \ | ||||
paul
|
r45 | ../src/tm_lfr_tc_exe.c \ | ||
paul
|
r95 | ../src/tc_acceptance.c \ | ||
../../LFR_basic-parameters/basic_parameters.c | ||||
paul
|
r45 | |||
paul@pc-solar1.lab-lpp.local
|
r20 | |||
HEADERS += \ | ||||
../header/wf_handler.h \ | ||||
../header/tc_handler.h \ | ||||
../header/grlib_regs.h \ | ||||
../header/fsw_processing.h \ | ||||
../header/fsw_params.h \ | ||||
../header/fsw_misc.h \ | ||||
../header/fsw_init.h \ | ||||
paul
|
r31 | ../header/ccsds_types.h \ | ||
paul
|
r33 | ../header/fsw_params_processing.h \ | ||
paul
|
r37 | ../header/fsw_spacewire.h \ | ||
paul
|
r40 | ../header/tm_byte_positions.h \ | ||
../header/tc_load_dump_parameters.h \ | ||||
paul
|
r45 | ../header/tm_lfr_tc_exe.h \ | ||
paul
|
r77 | ../header/tc_acceptance.h \ | ||
paul
|
r95 | ../header/fsw_params_nb_bytes.h \ | ||
../../LFR_basic-parameters/basic_parameters.h | ||||
paul@pc-solar1.lab-lpp.local
|
r20 | |||