############################################################################## # FILE: moos-ivp-extend/src/CMakeLists.txt # DATE: 2010/09/07 # 2020/05/09 minor mods # DESCRIPTION: CMakeLists.txt file for the moos-ivp-extend source directory ############################################################################## #============================================================================ # Add the libraries in the current directory to the include path #============================================================================ FILE(GLOB LOCAL_LIBRARY_DIRS ./lib_*) INCLUDE_DIRECTORIES(${LOCAL_LIBRARY_DIRS}/* ${LOCAL_LIBRARY_DIRS}/DUNE/) #============================================================================ # List the subdirectories to build... #============================================================================ ADD_SUBDIRECTORY(pBoardSupportComm) ADD_SUBDIRECTORY(pSurfaceSupportComm) ADD_SUBDIRECTORY(pClientViewer) ADD_SUBDIRECTORY(pDataManagement) ADD_SUBDIRECTORY(pTaskManger) ADD_SUBDIRECTORY(pTaskSend) ADD_SUBDIRECTORY(pMotionControler) ADD_SUBDIRECTORY(pEmulator) ADD_SUBDIRECTORY(pFaultHandle) ############################################################################## # END of CMakeLists.txt ##############################################################################