Examples install now installs data for Matlab examples. Fixed typo in examples documentation
parent
bd7724781d
commit
720db709be
|
@ -1,4 +1,4 @@
|
|||
This directory contains a number of exapmples that illustrate the use of GTSAM:
|
||||
This directory contains a number of examples that illustrate the use of GTSAM:
|
||||
|
||||
SimpleRotation: a super-simple example of optimizing a single rotation according to a single prior
|
||||
|
||||
|
|
|
@ -72,6 +72,10 @@ if (GTSAM_INSTALL_MATLAB_TOOLBOX)
|
|||
message(STATUS "Installing Matlab Toolbox Examples")
|
||||
file(GLOB matlab_examples "${CMAKE_SOURCE_DIR}/examples/matlab/*.m")
|
||||
install(FILES ${matlab_examples} DESTINATION ${GTSAM_TOOLBOX_INSTALL_PATH}/gtsam/examples)
|
||||
|
||||
message(STATUS "Installing Matlab Toolbox Examples (Data)")
|
||||
file(GLOB matlab_examples_data "${CMAKE_SOURCE_DIR}/examples/Data/*.*")
|
||||
install(FILES ${matlab_examples_data} DESTINATION ${GTSAM_TOOLBOX_INSTALL_PATH}/gtsam/examples/Data)
|
||||
endif (GTSAM_INSTALL_MATLAB_EXAMPLES)
|
||||
|
||||
# Tests
|
||||
|
|
Loading…
Reference in New Issue