
add_library(DecimateBy2 OBJECT
    decimate.cc
    DecimateBy2.cc
        decimate_c_wrappers.cc
)

target_include_directories(DecimateBy2 PRIVATE
    ${CMAKE_SOURCE_DIR}/src/SignalProcessing/FilterBase

    ${CMAKE_SOURCE_DIR}/src/Base/complex
    ${CMAKE_SOURCE_DIR}/src/Base/constant
    ${CMAKE_SOURCE_DIR}/src/Base/time

    ${CMAKE_SOURCE_DIR}/src/Containers/DVector
    ${CMAKE_SOURCE_DIR}/src/Containers/FilterIO
    ${CMAKE_SOURCE_DIR}/src/Containers/TSeries
)

install(FILES
    decimate.hh
    DecimateBy2.hh
        decimate.h
    DESTINATION include/gds-sigp

)
