Skip to content

Commit

Permalink
Giving dynamicETD3D own option
Browse files Browse the repository at this point in the history
Changed according to Armin Hornungs comment. Now both subprojects
octovis and dyanmicEDT3D are optional and not coupled
  • Loading branch information
Caspar Reist committed Jul 4, 2014
1 parent c7aef99 commit dd32a65
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@ PROJECT( octomap-distribution )
ENABLE_TESTING() # enable CTest environment of subprojects

option(BUILD_OCTOVIS_SUBPROJECT "Build targets from subproject octovis" ON)
option(BUILD_DYNAMICETD3D_SUBPROJECT "Build targets from subproject dynamicEDT3D" ON)

ADD_SUBDIRECTORY( octomap )

if(BUILD_OCTOVIS_SUBPROJECT)
ADD_SUBDIRECTORY( octovis )
endif()

if(BUILD_DYNAMICETD3D_SUBPROJECT)
ADD_SUBDIRECTORY( dynamicEDT3D )
endif()

Expand Down

0 comments on commit dd32a65

Please sign in to comment.