Skip to content

Commit

Permalink
don't build simulator on APPLE by default
Browse files Browse the repository at this point in the history
  • Loading branch information
pattacini committed Mar 27, 2021
1 parent 0f33a5a commit 5ffa204
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 5ffa204

Please sign in to comment.