Re-enable INSTALL_SD_CMAKE() but only for in-source builds,as it installs to the source directory

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7551 30fe4595-0a0c-4342-8851-515496e4dcbd
This commit is contained in:
beaglejoe 2021-06-06 13:38:54 +00:00
parent 1c99253b29
commit 5f54e394f0
1 changed files with 3 additions and 2 deletions

View File

@ -206,9 +206,10 @@ ENDIF(MSVC)
# Useful for using an installation of SD as a robot development framework without building it.
IF(LINUX)
# Only do for an in source tree build as INSTALL_SD_CMAKE() doesn't seem to use CMAKE_INSTALL_PREFIX
IF("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}")
INSTALL_SD_CMAKE()
ENDIF(LINUX)
ENDIF("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}")
# Must be the last ADD_SUBDIRECTORY for FIXUP_BUNDLE to work
ADD_SUBDIRECTORY(packaging)