Skip to content

Commit

Permalink
Merge pull request #734 from robotology/fix/551
Browse files Browse the repository at this point in the history
Don't build simulator on APPLE by default
  • Loading branch information
pattacini authored Mar 27, 2021
2 parents 0f33a5a + 5ffa204 commit 7a5077d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ mark_as_advanced(ICUBMAIN_COMPILE_CORE)
option(ICUBMAIN_COMPILE_TOOLS "Enable icub-main tools." ON)
mark_as_advanced(ICUBMAIN_COMPILE_TOOLS)

option(ICUBMAIN_COMPILE_SIMULATORS "Enable icub-main simulators." ON)
if(NOT APPLE)
option(ICUBMAIN_COMPILE_SIMULATORS "Enable icub-main simulators." ON)
else()
option(ICUBMAIN_COMPILE_SIMULATORS "Enable icub-main simulators." OFF)
endif()
mark_as_advanced(ICUBMAIN_COMPILE_SIMULATORS)

option(ICUBMAIN_COMPILE_MODULES "Enable icub-main modules." ON)
Expand Down

0 comments on commit 7a5077d

Please sign in to comment.