Merge pull request 'cmake fixes' (#314) from mueller/cmake-fixes into development
Reviewed-on: fsfw/fsfw#314
This commit is contained in:
commit
6663c69ee9
@ -38,6 +38,8 @@ add_subdirectory(controller)
|
|||||||
add_subdirectory(coordinates)
|
add_subdirectory(coordinates)
|
||||||
add_subdirectory(datalinklayer)
|
add_subdirectory(datalinklayer)
|
||||||
add_subdirectory(datapool)
|
add_subdirectory(datapool)
|
||||||
|
add_subdirectory(datapoollocal)
|
||||||
|
add_subdirectory(housekeeping)
|
||||||
add_subdirectory(devicehandlers)
|
add_subdirectory(devicehandlers)
|
||||||
add_subdirectory(events)
|
add_subdirectory(events)
|
||||||
add_subdirectory(fdir)
|
add_subdirectory(fdir)
|
||||||
|
@ -1,11 +1,6 @@
|
|||||||
target_sources(${LIB_FSFW_NAME}
|
target_sources(${LIB_FSFW_NAME}
|
||||||
PRIVATE
|
PRIVATE
|
||||||
ControllerSet.cpp
|
|
||||||
DataPool.cpp
|
|
||||||
DataPoolAdmin.cpp
|
|
||||||
DataPoolParameterWrapper.cpp
|
|
||||||
DataSet.cpp
|
|
||||||
HkSwitchHelper.cpp
|
HkSwitchHelper.cpp
|
||||||
|
PoolDataSetBase.cpp
|
||||||
PoolEntry.cpp
|
PoolEntry.cpp
|
||||||
PoolRawAccess.cpp
|
|
||||||
)
|
)
|
8
datapoollocal/CMakeLists.txt
Normal file
8
datapoollocal/CMakeLists.txt
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
target_sources(${LIB_FSFW_NAME}
|
||||||
|
PRIVATE
|
||||||
|
LocalDataPoolManager.cpp
|
||||||
|
LocalDataSet.cpp
|
||||||
|
LocalPoolDataSetBase.cpp
|
||||||
|
LocalPoolObjectBase.cpp
|
||||||
|
SharedLocalDataSet.cpp
|
||||||
|
)
|
@ -1,6 +1,5 @@
|
|||||||
target_sources(${LIB_FSFW_NAME}
|
target_sources(${LIB_FSFW_NAME}
|
||||||
PRIVATE
|
PRIVATE
|
||||||
Event.cpp
|
|
||||||
EventManager.cpp
|
EventManager.cpp
|
||||||
EventMessage.cpp
|
EventMessage.cpp
|
||||||
)
|
)
|
||||||
|
5
housekeeping/CMakeLists.txt
Normal file
5
housekeeping/CMakeLists.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
target_sources(${LIB_FSFW_NAME}
|
||||||
|
PRIVATE
|
||||||
|
HousekeepingMessage.cpp
|
||||||
|
PeriodicHousekeepingHelper.cpp
|
||||||
|
)
|
@ -2,4 +2,6 @@ target_sources(${LIB_FSFW_NAME}
|
|||||||
PRIVATE
|
PRIVATE
|
||||||
ConstStorageAccessor.cpp
|
ConstStorageAccessor.cpp
|
||||||
StorageAccessor.cpp
|
StorageAccessor.cpp
|
||||||
|
LocalPool.cpp
|
||||||
|
PoolManager.cpp
|
||||||
)
|
)
|
@ -1,10 +1,10 @@
|
|||||||
target_sources(${LIB_FSFW_NAME}
|
target_sources(${LIB_FSFW_NAME}
|
||||||
PRIVATE
|
PRIVATE
|
||||||
AbstractTemperatureSensor.cpp
|
AbstractTemperatureSensor.cpp
|
||||||
CoreComponent.cpp
|
|
||||||
Heater.cpp
|
Heater.cpp
|
||||||
RedundantHeater.cpp
|
RedundantHeater.cpp
|
||||||
|
ThermalComponentCore.cpp
|
||||||
ThermalComponent.cpp
|
ThermalComponent.cpp
|
||||||
ThermalModule.cpp
|
ThermalModule.cpp
|
||||||
ThermalMonitor.cpp
|
ThermalMonitorReporter.cpp
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user