2014-02-20 02:10:37 +08:00
|
|
|
# This file installs the scripts from this directory that may be used in other
|
|
|
|
# projects. See README.txt in this directory for documentation.
|
|
|
|
|
|
|
|
# Set the install directory depending on the platform so it will be found by
|
2014-02-20 02:12:22 +08:00
|
|
|
# find_package(GTSAMCMakeTools)
|
2014-02-20 02:10:37 +08:00
|
|
|
if(WIN32 AND NOT CYGWIN)
|
|
|
|
set(SCRIPT_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/CMake")
|
|
|
|
else()
|
|
|
|
set(SCRIPT_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib/cmake")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Install scripts
|
|
|
|
install(FILES
|
2014-02-20 02:12:22 +08:00
|
|
|
GTSAMCMakeToolsConfig.cmake
|
2014-02-20 02:10:37 +08:00
|
|
|
Config.cmake.in
|
|
|
|
dllexport.h.in
|
|
|
|
GtsamBuildTypes.cmake
|
|
|
|
GtsamMakeConfigFile.cmake
|
|
|
|
GtsamTesting.cmake
|
2019-12-04 04:41:49 +08:00
|
|
|
GtsamPrinting.cmake
|
2017-05-31 08:40:28 +08:00
|
|
|
FindNumPy.cmake
|
2014-02-20 04:43:37 +08:00
|
|
|
README.html
|
2014-02-20 02:12:22 +08:00
|
|
|
DESTINATION "${SCRIPT_INSTALL_DIR}/GTSAMCMakeTools")
|