cmake_minimum_required(VERSION 3.12)
project(oceansat_support)


file(GLOB_RECURSE oceansat_support_CPPS *.cpp)
add_library(oceansat_support SHARED ${oceansat_support_CPPS})
target_link_libraries(oceansat_support PUBLIC satdump_core)
target_include_directories(oceansat_support PUBLIC src)

install(TARGETS oceansat_support DESTINATION ${CMAKE_INSTALL_LIBDIR}/satdump/plugins)