opencv/modules/gpu/app/nv_perf_test/CMakeLists.txt

11 lines
232 B
CMake
Raw Normal View History

2012-12-13 10:49:32 +01:00
cmake_minimum_required(VERSION 2.8.3)
2012-12-05 14:21:08 +01:00
project(nv_perf_test)
find_package(OpenCV REQUIRED)
include_directories(${OpenCV_INCLUDE_DIR})
add_executable(${PROJECT_NAME} main.cpp)
target_link_libraries(${PROJECT_NAME} ${OpenCV_LIBS})