moved catch factory again

This commit is contained in:
Robin Müller 2020-12-03 14:50:28 +01:00
parent 03aacea4dd
commit 9781105ad0
3 changed files with 6 additions and 5 deletions

View File

@ -1,11 +1,11 @@
#include "CatchFactory.h"
#include "../../events/EventManager.h"
#include "../../health/HealthTable.h"
#include <fsfw/events/EventManager.h>
#include <fsfw/health/HealthTable.h>
#include "../../internalError/InternalErrorReporter.h"
#include "../../objectmanager/frameworkObjects.h"
#include "../../storagemanager/PoolManager.h"
#include <fsfw/internalError/InternalErrorReporter.h>
#include <fsfw/objectmanager/frameworkObjects.h>
#include <fsfw/storagemanager/PoolManager.h>
/**
* @brief Produces system objects.

View File

@ -3,6 +3,7 @@ CXXSRC += $(wildcard $(CURRENTPATH)/ipc/*.cpp)
CXXSRC += $(wildcard $(CURRENTPATH)/objects/*.cpp)
CXXSRC += $(wildcard $(CURRENTPATH)/pollingsequence/*.cpp)
CXXSRC += $(wildcard $(CURRENTPATH)/events/*.cpp)
CXXSRC += $(wildcard $(CURRENTPATH)/*.cpp)
INCLUDES += $(CURRENTPATH)
INCLUDES += $(CURRENTPATH)/objects