view CMakeLists.txt @ 251:4978b5baf8f1

Win32 version for traffic intelligence. Use the README-Win32.txt to know how to fetch the dependencies. A batch file is included to automate most of the process
author Jeep-Tour@Jeep-Tour-PC
date Mon, 23 Jul 2012 12:27:50 -0400
parents 46b166523bf8
children 450dc0648aaa
line wrap: on
line source

CMAKE_MINIMUM_REQUIRED( VERSION 2.6 )

FIND_PACKAGE(
	OpenCV REQUIRED
)

FIND_LIBRARY(
	SQLite3_LIBS sqlite3
)

#FIND_PACKAGE(TrajectoryManagement)

SET(
	CMAKE_CXX_FLAGS "-g -Wall"
)

ADD_EXECUTABLE(
  bin/feature-based-tracking
  c/feature-based-tracking.cpp
  )

INCLUDE_DIRECTORIES(
#  bin/feature-based-tracking
/home/nicolas/Research/Code/trajectorymanagementandanalysis/trunk/src/TrajectoryManagementAndAnalysis
)

#TARGET_LINK_LIBRARIES(
#  bin/feature-based-tracking
#  ${OpenCV_LIBS}
#  $(TrajectoryManagement_DIR)
  #	${SQLite3_LIBS}
#  )