cmake_minimum_required(VERSION 2.8)
# The name of this project is "task-parameterized-GMM".  CMakeLists files in this project can
# refer to the root source directory of the project as ${TASK-PARAMETERIZED-GMM_SOURCE_DIR} and
# to the root binary directory of the project as ${TASK-PARAMETERIZED-GMM_BINARY_DIR}.
project (task-parameterized-GMM)
# Make sure the compiler can find include files from our armadillo library.
include_directories (/usr/local/include/armadillo_bit)

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

# Add executable called "task-parameterized-GMM" that is built from the source files
# "main.cpp" and "PGMM.cpp".  The extensions are automatically found.
add_executable (bin/example src/main.cpp src/PGMM.cpp)

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