diff options
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 7c8c2b4..a016c14 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -22,12 +22,7 @@ PROJECT_TARGET_ADD(harvester) # Define project Targets add_library(${TARGET_NAME} MODULE - ${TARGET_NAME}.c - plugins/tsdb.c - plugins/influxdb.c - plugins/influxdb-writer.c - plugins/influxdb-reader.c - utils/list.c + ${TARGET_NAME}-binding.c ) set(OPENAPI_DEF "harvester-apidef" CACHE STRING "name and path to the JSON API definition without extension") @@ -43,5 +38,7 @@ PROJECT_TARGET_ADD(harvester) # Library dependencies (include updates automatically) TARGET_LINK_LIBRARIES(${TARGET_NAME} afb-helpers + ctl-utilities ${link_libraries}) +add_subdirectory("plugins") |