11 lines
281 B
CMake
11 lines
281 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
set(OpenVINO_DIR "/opt/intel/openvino_2024.6.0/runtime/cmake")
|
|
|
|
find_package(OpenVINO REQUIRED COMPONENTS Runtime)
|
|
|
|
add_library(omniperception OBJECT
|
|
decider.cpp
|
|
perceptron.cpp
|
|
)
|
|
target_link_libraries(omniperception openvino::runtime) |