From 31105757e6e41b5f5438dd1a2fab3656acb01fab Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Tue, 24 Oct 2023 22:20:14 -0400 Subject: [PATCH] tidy -- remove dead model file --- CMakeLists.txt.old | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 CMakeLists.txt.old diff --git a/CMakeLists.txt.old b/CMakeLists.txt.old deleted file mode 100644 index e85d245f..00000000 --- a/CMakeLists.txt.old +++ /dev/null @@ -1,37 +0,0 @@ -# filter/CMakeLists.txt - -set(SELF_LIBRARY_NAME filter) - -set(SELF_SOURCE_FILES KalmanFilterSvc.cpp KalmanFilter.cpp KalmanFilterState.cpp KalmanFilterTransition.cpp KalmanFilterObservable.cpp KalmanFilterInput.cpp KalmanFilterStep.cpp KalmanFilterSpec.cpp KalmanFilterEngine.cpp KalmanFilterInputToConsole.cpp KalmanFilterStateToConsole.cpp EigenUtil.cpp init_filter.cpp) - -# build shared liburary 'filter' -add_library(${SELF_LIBRARY_NAME} SHARED ${SELF_SOURCE_FILES}) - -set_target_properties(${SELF_LIBRARY_NAME} - PROPERTIES - VERSION ${PROJECT_VERSION} - SOVERSION 1 - PUBLIC_HEADER init_filter.hpp) - -# ---------------------------------------------------------------- -# all the warnings! -# -xo_compile_options(${SELF_LIBRARY_NAME}) -xo_include_options(${SELF_LIBRARY_NAME}) - -# ---------------------------------------------------------------- -# internal dependencies: reactor, ... - -#target_link_libraries(${SELF_LIBRARY_NAME} PUBLIC process) -target_link_libraries(${SELF_LIBRARY_NAME} PUBLIC reactor) -target_link_libraries(${SELF_LIBRARY_NAME} PUBLIC printjson) -target_link_libraries(${SELF_LIBRARY_NAME} PUBLIC refcnt) - -# ---------------------------------------------------------------- -# 3rd party dependency: eigen: - -xo_eigen_dependency(${SELF_LIBRARY_NAME}) - -xo_install_library(${SELF_LIBRARY_NAME}) - -# end CMakeLists.txt