I am trying to link my library and opencv library. Cmake is working properly, solution is build but linker error occurs. It seems as cmake couldnt link opencv lib with my library.
This is an error which visual studio has.
CMakeLists configuration for opencv lib
This is piece of CMakeLists conf responsible for linking libs.
# link libs
target_link_libraries(${APP_NAME} ${OpenCV_LIBS})
I would be very grateful for you help.