diff --git a/CMakeLists.txt b/CMakeLists.txt index e4277ed329a17f46dd98b0b2e59281f87ddf7576..89926eaae69899c9d01874d3759e6cef52961a9c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,6 @@ endif() ############################################## # Find system dependencies find_package(aidge_core REQUIRED) -find_package(aidge_backend_cpu REQUIRED) find_package(OpenCV REQUIRED) if (${OpenCV_VERSION_MAJOR} LESS 3) MESSAGE(FATAL_ERROR "Unsupported OpenCV version. OpenCV 3.0.0+ is required") @@ -47,7 +46,6 @@ add_library(${module_name} ${src_files} ${inc_files}) target_link_libraries(${module_name} PUBLIC _aidge_core # _ is added because we link the target not the project - _aidge_backend_cpu ) target_link_libraries(${module_name} PUBLIC ${OpenCV_LIBS})