You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ("$ENV{RESIBOTS_DIR}"STREQUAL""AND"${LIBDYNAMIXEL}"STREQUAL"")
always returns true in my understanding. So, even though I set LIBDYNAMIXEL as a environment variable, this cmake uses default settings if I do not set RESIBOTS_DIR.
I think it (Line 6) should be as the following.
set(LIBDYNAMIXEL "$ENV{LIBDYNAMIXEL}")
Regards.
The text was updated successfully, but these errors were encountered:
Hi, thank you for publishing great software.
I would like to ask you why you write CMake as the following:
dynamixel_control_hw/CMakeLists.txt
Line 6 in 0d21d0d
In this implementation,the right hand
STREQUAL
ofdynamixel_control_hw/CMakeLists.txt
Line 25 in 0d21d0d
always returns
true
in my understanding. So, even though I set LIBDYNAMIXEL as a environment variable, this cmake uses default settings if I do not set RESIBOTS_DIR.I think it (Line 6) should be as the following.
Regards.
The text was updated successfully, but these errors were encountered: