Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable RTF #1

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ include(YCMEPHelper)

# Core
if(ROBOTOLOGY_ENABLE_CORE)
find_or_build_package(RTF)
#find_or_build_package(RTF)
find_or_build_package(YARP)
find_or_build_package(ICUB)
find_or_build_package(ICUBcontrib)
Expand Down
6 changes: 3 additions & 3 deletions cmake/BuildYARP.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include(FindOrBuildPackage)
find_package(ACE QUIET)
find_package(SQLite QUIET)
find_package(Eigen3 QUIET)
find_or_build_package(RTF QUIET)
#find_or_build_package(RTF QUIET)

if(ROBOTOLOGY_USES_PYTHON)
set(YARP_COMPILE_BINDINGS ON)
Expand All @@ -26,7 +26,7 @@ ycm_ep_helper(YARP TYPE GIT
ACE
SQLite
Eigen3
RTF
# RTF
CMAKE_ARGS -DCREATE_IDLS:BOOL=ON
-DCREATE_GUIS:BOOL=ON
-DYARP_USE_SYSTEM_SQLITE:BOOL=ON
Expand All @@ -45,7 +45,7 @@ ycm_ep_helper(YARP TYPE GIT
-DENABLE_yarpmod_imuBosch_BNO055:BOOL=${ROBOTOLOGY_ENABLE_ICUB_HEAD}
-DENABLE_yarpmod_SDLJoypad:BOOL=ON
-DYARP_COMPILE_EXPERIMENTAL_WRAPPERS:BOOL=ON
-DYARP_COMPILE_RTF_ADDONS:BOOL=ON
-DYARP_COMPILE_RTF_ADDONS:BOOL=OFF
-DYARP_COMPILE_BINDINGS:BOOL=${YARP_COMPILE_BINDINGS}
-DYARP_USE_I2C:BOOL=${ROBOTOLOGY_ENABLE_ICUB_HEAD}
-DYARP_USE_SDL:BOOL=ON
Expand Down