16 lines
393 B
CMake
16 lines
393 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
set(OpenVINO_DIR "/opt/intel/openvino_2024.6.0/runtime/cmake")
|
|
|
|
find_package(OpenVINO REQUIRED)
|
|
find_package(Ceres REQUIRED)
|
|
|
|
add_library(auto_buff OBJECT
|
|
buff_type.cpp
|
|
buff_detector.cpp
|
|
buff_solver.cpp
|
|
buff_aimer.cpp
|
|
buff_target.cpp
|
|
yolo11_buff.cpp
|
|
)
|
|
|
|
target_link_libraries(auto_buff auto_aim openvino::runtime ${CERES_LIBRARIES}) |