From 22b33b38621998e398fc45decfcfbd36fe9a976b Mon Sep 17 00:00:00 2001 From: Razvan Mihalyi Date: Mon, 17 Sep 2012 11:18:25 +0200 Subject: [PATCH] Added initial CMakeLists.txt --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..8741ff3 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,5 @@ +CMAKE_MINIMUM_REQUIRED(VERSION 2.8 FATAL_ERROR) +PROJECT( calibrate ) +FIND_PACKAGE( OpenCV REQUIRED ) +ADD_EXECUTABLE( ${PROJECT_NAME} calibrate.cc ) +TARGET_LINK_LIBRARIES( ${PROJECT_NAME} ${OpenCV_LIBS} )