QT -= gui CONFIG += c++11 console CONFIG -= app_bundle # The following define makes your compiler emit warnings if you use # any feature of Qt which as been marked deprecated (the exact warnings # depend on your compiler). Please consult the documentation of the # deprecated API in order to know how to port your code away from it. DEFINES += QT_DEPRECATED_WARNINGS # You can also make your code fail to compile if you use deprecated APIs. # In order to do so, uncomment the following line. # You can also select to disable deprecated APIs only up to a certain version of Qt. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 SOURCES += \ main.cpp \ ../../src/abstraction_functions.cpp \ ../../src/abstraction_interface.cpp \ ../../src/AbstractionModule.cpp \ ../../src/Agent.cpp \ ../../src/AgentSlotOfTestbench.cpp \ ../../src/attach_modules.cpp \ ../../src/attach_modulesToTestbench.cpp \ ../../src/AverageValue.cpp \ ../../src/boundary_check.cpp \ ../../src/Bunch_Module.cpp \ ../../src/Channel.cpp \ ../../src/ChannelSlotOfTestbench.cpp \ ../../src/clock.cpp \ ../../src/ConfidenceModule.cpp \ ../../src/Continuous_Average.cpp \ ../../src/create_unit.cpp \ ../../src/Cross_Confidence_Validator.cpp \ ../../src/CSVreaderModule.cpp \ ../../src/CSV_Writer.cpp \ ../../src/Discrete_Average.cpp \ ../../src/Domain.cpp \ ../../src/Evaluation.cpp \ ../../src/extremaValues.cpp \ ../../src/ExtremeValue.cpp \ ../../src/HandlerOfAgent.cpp \ ../../src/HistoryEntry.cpp \ ../../src/HistoryModule.cpp \ ../../src/inAgentsRegistrations.cpp \ ../../src/LinearFunction.cpp \ ../../src/LinearFunctionBlock.cpp \ ../../src/Lookuptable.cpp \ # ../../src/main.cpp \ # ../../src/main_motor_old.cpp \ # ../../src/main_OMV.cpp \ # ../../src/main_OPEL_GA_Data.cpp \ # ../../src/main_Opel_GA_Data_Symmetrie.cpp \ # ../../src/main_Wr_Neustadt.cpp \ ../../src/MasterAgentHandlerOfAgent.cpp \ ../../src/MasterAgentSlotOfAgent.cpp \ ../../src/MaximumValue.cpp \ ../../src/Message.cpp \ ../../src/minmaxzeug.cpp \ ../../src/MinumumValue.cpp \ ../../src/Module.cpp \ ../../src/mount_nodes.cpp \ ../../src/Node.cpp \ ../../src/printError.cpp \ ../../src/Range.cpp \ ../../src/register_in_testbench.cpp \ ../../src/relationChecker.cpp \ ../../src/Sensor.cpp \ ../../src/SensorHandlerOfAgent.cpp \ ../../src/SensorSlotOfAgent.cpp \ ../../src/SensorSlotOfTestbench.cpp \ ../../src/setup_agent.cpp \ ../../src/setup_lookuptable.cpp \ ../../src/setupNode.cpp \ ../../src/SlaveAgentHandlerOfAgent.cpp \ ../../src/SlaveAgentSlotOfAgent.cpp \ ../../src/Slot.cpp \ ../../src/SlotOfAgent.cpp \ ../../src/State.cpp \ ../../src/StateHandler.cpp \ ../../src/StateModule.cpp \ ../../src/StateVariable.cpp \ ../../src/StatisticValue.cpp \ ../../src/SubState.cpp \ ../../src/Testbench.cpp \ ../../src/Testbench_Config.cpp \ ../../src/Unit.cpp \ ../../src/user_method_abstraction.cpp \ ../../src/csvparser.c # Default rules for deployment. qnx: target.path = /tmp/$${TARGET}/bin else: unix:!android: target.path = /opt/$${TARGET}/bin !isEmpty(target.path): INSTALLS += target DISTFILES += \ ../../src/Readme_Änderungen.txt \ ../../src/CMakeLists.txt HEADERS += \ ../../src/abstraction_functions.h \ ../../src/abstraction_interface.h \ ../../src/AbstractionModule.h \ ../../src/Agent.h \ ../../src/AgentSlotOfTestbench.h \ ../../src/attach_modules.h \ ../../src/attach_modulesToTestbench.h \ ../../src/AverageValue.h \ ../../src/boundary_check.h \ ../../src/Bunch_Module.h \ ../../src/Channel.h \ ../../src/ChannelSlotOfTestbench.h \ ../../src/clock.h \ ../../src/ConfidenceModule.h \ ../../src/Continuous_Average.h \ ../../src/create_unit.h \ ../../src/Cross_Confidence_Validator.h \ ../../src/csvparser.h \ ../../src/CSVreaderModule.h \ ../../src/CSV_Writer.h \ ../../src/Discrete_Average.h \ ../../src/Domain.h \ ../../src/Evaluation.h \ ../../src/extremaValues.h \ ../../src/ExtremeValue.h \ ../../src/file_util.h \ ../../src/HandlerOfAgent.h \ ../../src/Header.h \ ../../src/HistoryEntry.h \ ../../src/HistoryModule.h \ ../../src/inAgentsRegistrations.h \ ../../src/instruction_set_architecture.h \ ../../src/LinearFunction.h \ ../../src/LinearFunctionBlock.h \ ../../src/Lookuptable.h \ ../../src/MasterAgentHandlerOfAgent.h \ ../../src/MasterAgentSlotOfAgent.h \ ../../src/MaximumValue.h \ ../../src/Message.h \ ../../src/minmaxzeug.h \ ../../src/MinumumValue.h \ ../../src/Module.h \ ../../src/mount_nodes.h \ ../../src/Node.h \ ../../src/printError.h \ ../../src/project_settings.h \ ../../src/Range.h \ ../../src/register_in_testbench.h \ ../../src/relationChecker.h \ ../../src/rlutil.h \ ../../src/Sensor.h \ ../../src/SensorHandlerOfAgent.h \ ../../src/SensorSlotOfAgent.h \ ../../src/SensorSlotOfTestbench.h \ ../../src/settings.h \ ../../src/setup_agent.h \ ../../src/setup_lookuptable.h \ ../../src/setupNode.h \ ../../src/SlaveAgentHandlerOfAgent.h \ ../../src/SlaveAgentSlotOfAgent.h \ ../../src/Slot.h \ ../../src/SlotOfAgent.h \ ../../src/State.h \ ../../src/StateHandler.h \ ../../src/StateModule.h \ ../../src/StateVariable.h \ ../../src/StatisticValue.h \ ../../src/SubState.h \ ../../src/Testbench.h \ ../../src/Testbench_Config.h \ ../../src/Unit.h \ ../../src/user_method_abstraction.h INCLUDEPATH += ../../src