root/applications/bdmtoolbox/CMakeLists.txt @ 653

Revision 653, 428 bytes (checked in by smidl, 15 years ago)

corrections in Kalman and particles

Line 
1# Matlab toolbox of functions from BDM
2
3cmake_minimum_required(VERSION 2.6)
4PROJECT(bdmtoolbox)
5
6# Link it to BDM
7SET(BDM_SOURCE_DIR "${CMAKE_SOURCE_DIR}/../../library")
8SET(CMAKE_MODULE_PATH "${BDM_SOURCE_DIR}/system")
9
10# Load BDM environment
11INCLUDE(SetBdmEnv)
12
13include_directories (${BDM_SOURCE_DIR}/bdm)
14link_directories (${BDM_SOURCE_DIR}/bdm)
15
16#EXEC(estimator)
17
18IF(MATLAB_FOUND)
19        add_subdirectory (mex)
20ENDIF(MATLAB_FOUND)
Note: See TracBrowser for help on using the browser.