cmake_minimum_required(VERSION 2.8)
# The name of this project is "DMP-learned-by-GMR".  CMakeLists files in this project can
# refer to the root source directory of the project as ${DMP-LEARNED-BY-GMR_SOURCE_DIR} and
# to the root binary directory of the project as ${DMP-LEARNED-BY-GMR_BINARY_DIR}.
project (DMP-learned-by-GMR)

# Make sure the compiler can find include files from our Hello library.
include_directories (/usr/local/include/armadillo_bit)

# Make sure the linker can find the Hello library once it is built.
link_directories (/usr/local/lib)

# Add executable called "DMP-learned-by-GMR" that is built from the source files
# "main.cpp" and "DmpGmr.cpp".  The extensions are automatically found.
add_executable (bin/example src/main.cpp src/DmpGmr.cpp)

# Link the executable to the Hello library.
target_link_libraries (bin/example armadillo)

