Skip to content

Commit

Permalink
Merge pull request RobotLocomotion#1270 from rdeits/rd-list
Browse files Browse the repository at this point in the history
separate lines for each item in project list
  • Loading branch information
RussTedrake committed Aug 21, 2015
2 parents 5549f55 + 81b312c commit 3d97620
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,29 @@ endif()
# process optional projects
# note: keep drake in this loop in case externals depend on drake (e.g. the director might in the near future)
set(EXTERNAL_PROJECTS)
foreach(proj IN ITEMS cmake eigen gtk lcm libbot bullet iris spotless director signalscope octomap snopt gurobi mosek yalmip gloptipoly bertini sedumi avl xfoil meshconverters drake)
foreach(proj IN ITEMS
cmake
eigen
gtk
lcm
libbot
bullet
iris
spotless
director
signalscope
octomap
snopt
gurobi
mosek
yalmip
gloptipoly
bertini
sedumi
avl
xfoil
meshconverters
drake)
string(TOUPPER ${proj} proj_upper)
if (${proj} STREQUAL "drake" OR ${proj} STREQUAL "cmake" OR WITH_${proj_upper} OR WITH_ALL_SUPPORTED_EXTERNALS)
list(APPEND EXTERNAL_PROJECTS ${proj})
Expand Down

0 comments on commit 3d97620

Please sign in to comment.