-
Notifications
You must be signed in to change notification settings - Fork 48
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
CMake Error when linking GazeboYARPPlugins
libraries in Windows
#655
Comments
GazeboYARPPlugins
librariesGazeboYARPPlugins
libraries in Windows
But even when we build |
I never used You need Do you confirm @traversaro ? |
On most libraries we do not explicitly exports symbols, but we just set CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS option to ON, see the how-to-export-cpp-libraries repo. It is possible we are not doing this correctly in this repo. |
Indeed, that option is set in https://github.com/robotology/gazebo-yarp-plugins/blob/master/CMakeLists.txt#L69 . Furthermore, if the singleton shared library is already working fine for plugins in the repo (i.e. all the required symbols are exported), it would be surprising if more symbols need to be exported for the use case of plugins contained in other repos. To give more context on the issue, it is important to know that Windows and Unix-like operating systems are different on how they handle shared libraries: on Unix there is a single file (.so or .dylib) that is used both during linking (the process when libraries or executable are created from .o object files) and during loading (the process when an executable is launched and all the required shared libraries are loaded in memory. On the other hand, on Windows when you create a shared library two files should be created: an "import library" (.lib) that is used during linking, and a "dynamically loaded library (.dll) that is used during loading. In this case, it seems that for some reason the import library (implib) file for the singleton library is not correctly set in the CMake config files. Ti help us debugging, it would be helpful to report in the issue:
|
Hi @traversaro output of the installation step of gyp
GazeboYARPPluginsTargets.cmake
# Generated by CMake
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
message(FATAL_ERROR "CMake >= 2.8.0 required")
endif()
if(CMAKE_VERSION VERSION_LESS "2.8.3")
message(FATAL_ERROR "CMake >= 2.8.3 required")
endif()
cmake_policy(PUSH)
cmake_policy(VERSION 2.8.3...3.24)
#----------------------------------------------------------------
# Generated CMake target import file.
#----------------------------------------------------------------
# Commands may need to know the format version.
set(CMAKE_IMPORT_FILE_VERSION 1)
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
set(_cmake_targets_defined "")
set(_cmake_targets_not_defined "")
set(_cmake_expected_targets "")
foreach(_cmake_expected_target IN ITEMS GazeboYARPPlugins::gazebo_yarp_lib_common GazeboYARPPlugins::gazebo_yarp_singleton GazeboYARPPlugins::gazebo_yarp_rpc_clock GazeboYARPPlugins::gazebo_yarp_rpc_worldinterface GazeboYARPPlugins::gazebo_yarp_rpc_linkattacher GazeboYARPPlugins::gazebo_yarp_camera GazeboYARPPlugins::gazebo_yarp_clock GazeboYARPPlugins::gazebo_yarp_controlboard GazeboYARPPlugins::gazebo_yarp_externalwrench GazeboYARPPlugins::gazebo_yarp_fakecontrolboard GazeboYARPPlugins::gazebo_yarp_forcetorque GazeboYARPPlugins::gazebo_yarp_imu GazeboYARPPlugins::gazebo_yarp_inertial GazeboYARPPlugins::gazebo_yarp_distributedinertials GazeboYARPPlugins::gazebo_yarp_showmodelcom GazeboYARPPlugins::gazebo_yarp_MultiCameraPlugin GazeboYARPPlugins::gazebo_yarp_multicamera GazeboYARPPlugins::gazebo_yarp_maissensor GazeboYARPPlugins::gazebo_yarp_videotexture GazeboYARPPlugins::gazebo_yarp_worldinterface GazeboYARPPlugins::gazebo_yarp_linkattacher GazeboYARPPlugins::gazebo_yarp_lasersensor GazeboYARPPlugins::gazebo_yarp_depthCamera GazeboYARPPlugins::gazebo_yarp_contactloadcellarray GazeboYARPPlugins::gazebo_yarp_modelposepublisher GazeboYARPPlugins::gazebo_yarp_basestate GazeboYARPPlugins::gazebo_yarp_configurationoverride GazeboYARPPlugins::gazebo_yarp_robotinterface)
list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
if(TARGET "${_cmake_expected_target}")
list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
else()
list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
endif()
endforeach()
unset(_cmake_expected_target)
if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
unset(_cmake_targets_defined)
unset(_cmake_targets_not_defined)
unset(_cmake_expected_targets)
unset(CMAKE_IMPORT_FILE_VERSION)
cmake_policy(POP)
return()
endif()
if(NOT _cmake_targets_defined STREQUAL "")
string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
endif()
unset(_cmake_targets_defined)
unset(_cmake_targets_not_defined)
unset(_cmake_expected_targets)
# Compute the installation prefix relative to this file.
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
if(_IMPORT_PREFIX STREQUAL "/")
set(_IMPORT_PREFIX "")
endif()
# Create imported target GazeboYARPPlugins::gazebo_yarp_lib_common
add_library(GazeboYARPPlugins::gazebo_yarp_lib_common INTERFACE IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_lib_common PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_singleton
add_library(GazeboYARPPlugins::gazebo_yarp_singleton SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_singleton PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "YARP::YARP_os;YARP::YARP_dev;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_rpc_clock
add_library(GazeboYARPPlugins::gazebo_yarp_rpc_clock SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_rpc_clock PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include/gazebo"
INTERFACE_LINK_LIBRARIES "YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_rpc_worldinterface
add_library(GazeboYARPPlugins::gazebo_yarp_rpc_worldinterface SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_rpc_worldinterface PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include/gazebo"
INTERFACE_LINK_LIBRARIES "YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_rpc_linkattacher
add_library(GazeboYARPPlugins::gazebo_yarp_rpc_linkattacher SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_rpc_linkattacher PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include/gazebo"
INTERFACE_LINK_LIBRARIES "YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_camera
add_library(GazeboYARPPlugins::gazebo_yarp_camera SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_camera PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;CameraPlugin"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_clock
add_library(GazeboYARPPlugins::gazebo_yarp_clock SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_clock PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_rpc_clock;GazeboYARPPlugins::gazebo_yarp_lib_common;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_controlboard
add_library(GazeboYARPPlugins::gazebo_yarp_controlboard SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_controlboard PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_COMPILE_FEATURES "cxx_std_20"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_externalwrench
add_library(GazeboYARPPlugins::gazebo_yarp_externalwrench SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_externalwrench PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_fakecontrolboard
add_library(GazeboYARPPlugins::gazebo_yarp_fakecontrolboard SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_fakecontrolboard PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_forcetorque
add_library(GazeboYARPPlugins::gazebo_yarp_forcetorque SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_forcetorque PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;ForceTorquePlugin;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_imu
add_library(GazeboYARPPlugins::gazebo_yarp_imu SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_imu PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_inertial
add_library(GazeboYARPPlugins::gazebo_yarp_inertial SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_inertial PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_distributedinertials
add_library(GazeboYARPPlugins::gazebo_yarp_distributedinertials SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_distributedinertials PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_showmodelcom
add_library(GazeboYARPPlugins::gazebo_yarp_showmodelcom SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_showmodelcom PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_MultiCameraPlugin
add_library(GazeboYARPPlugins::gazebo_yarp_MultiCameraPlugin SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_MultiCameraPlugin PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_multicamera
add_library(GazeboYARPPlugins::gazebo_yarp_multicamera SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_multicamera PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;GazeboYARPPlugins::gazebo_yarp_MultiCameraPlugin;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_maissensor
add_library(GazeboYARPPlugins::gazebo_yarp_maissensor SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_maissensor PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_videotexture
add_library(GazeboYARPPlugins::gazebo_yarp_videotexture SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_videotexture PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;opencv_calib3d;opencv_core;opencv_dnn;opencv_features2d;opencv_flann;opencv_gapi;opencv_highgui;opencv_imgcodecs;opencv_imgproc;opencv_ml;opencv_objdetect;opencv_photo;opencv_stitching;opencv_video;opencv_videoio;opencv_alphamat;opencv_aruco;opencv_barcode;opencv_bgsegm;opencv_ccalib;opencv_cvv;opencv_datasets;opencv_dnn_objdetect;opencv_dnn_superres;opencv_dpm;opencv_face;opencv_freetype;opencv_fuzzy;opencv_hdf;opencv_hfs;opencv_img_hash;opencv_intensity_transform;opencv_line_descriptor;opencv_mcc;opencv_optflow;opencv_phase_unwrapping;opencv_plot;opencv_quality;opencv_rapid;opencv_reg;opencv_rgbd;opencv_saliency;opencv_shape;opencv_stereo;opencv_structured_light;opencv_superres;opencv_surface_matching;opencv_text;opencv_tracking;opencv_videostab;opencv_wechat_qrcode;opencv_xfeatures2d;opencv_ximgproc;opencv_xobjdetect;opencv_xphoto;opencv_calib3d;opencv_core;opencv_dnn;opencv_features2d;opencv_flann;opencv_gapi;opencv_highgui;opencv_imgcodecs;opencv_imgproc;opencv_ml;opencv_objdetect;opencv_photo;opencv_stitching;opencv_video;opencv_videoio;opencv_alphamat;opencv_aruco;opencv_barcode;opencv_bgsegm;opencv_ccalib;opencv_cvv;opencv_datasets;opencv_dnn_objdetect;opencv_dnn_superres;opencv_dpm;opencv_face;opencv_freetype;opencv_fuzzy;opencv_hdf;opencv_hfs;opencv_img_hash;opencv_intensity_transform;opencv_line_descriptor;opencv_mcc;opencv_optflow;opencv_phase_unwrapping;opencv_plot;opencv_quality;opencv_rapid;opencv_reg;opencv_rgbd;opencv_saliency;opencv_shape;opencv_stereo;opencv_structured_light;opencv_superres;opencv_surface_matching;opencv_text;opencv_tracking;opencv_videostab;opencv_wechat_qrcode;opencv_xfeatures2d;opencv_ximgproc;opencv_xobjdetect;opencv_xphoto;opencv_calib3d;opencv_core;opencv_dnn;opencv_features2d;opencv_flann;opencv_gapi;opencv_highgui;opencv_imgcodecs;opencv_imgproc;opencv_ml;opencv_objdetect;opencv_photo;opencv_stitching;opencv_video;opencv_videoio;opencv_alphamat;opencv_aruco;opencv_barcode;opencv_bgsegm;opencv_ccalib;opencv_cvv;opencv_datasets;opencv_dnn_objdetect;opencv_dnn_superres;opencv_dpm;opencv_face;opencv_freetype;opencv_fuzzy;opencv_hdf;opencv_hfs;opencv_img_hash;opencv_intensity_transform;opencv_line_descriptor;opencv_mcc;opencv_optflow;opencv_phase_unwrapping;opencv_plot;opencv_quality;opencv_rapid;opencv_reg;opencv_rgbd;opencv_saliency;opencv_shape;opencv_stereo;opencv_structured_light;opencv_superres;opencv_surface_matching;opencv_text;opencv_tracking;opencv_videostab;opencv_wechat_qrcode;opencv_xfeatures2d;opencv_ximgproc;opencv_xobjdetect;opencv_xphoto"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_worldinterface
add_library(GazeboYARPPlugins::gazebo_yarp_worldinterface SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_worldinterface PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_rpc_worldinterface;GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_linkattacher
add_library(GazeboYARPPlugins::gazebo_yarp_linkattacher SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_linkattacher PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_rpc_linkattacher;GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_lasersensor
add_library(GazeboYARPPlugins::gazebo_yarp_lasersensor SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_lasersensor PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;RayPlugin;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_depthCamera
add_library(GazeboYARPPlugins::gazebo_yarp_depthCamera SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_depthCamera PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_contactloadcellarray
add_library(GazeboYARPPlugins::gazebo_yarp_contactloadcellarray SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_contactloadcellarray PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_modelposepublisher
add_library(GazeboYARPPlugins::gazebo_yarp_modelposepublisher SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_modelposepublisher PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_basestate
add_library(GazeboYARPPlugins::gazebo_yarp_basestate SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_basestate PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_configurationoverride
add_library(GazeboYARPPlugins::gazebo_yarp_configurationoverride SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_configurationoverride PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
# Create imported target GazeboYARPPlugins::gazebo_yarp_robotinterface
add_library(GazeboYARPPlugins::gazebo_yarp_robotinterface SHARED IMPORTED)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_robotinterface PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;WIN32_LEAN_AND_MEAN;_USE_MATH_DEFINES"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time"
)
if(CMAKE_VERSION VERSION_LESS 3.0.0)
message(FATAL_ERROR "This file relies on consumers using CMake 3.0.0 or greater.")
endif()
# Load information for each installed configuration.
file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/GazeboYARPPluginsTargets-*.cmake")
foreach(_cmake_config_file IN LISTS _cmake_config_files)
include("${_cmake_config_file}")
endforeach()
unset(_cmake_config_file)
unset(_cmake_config_files)
# Cleanup temporary variables.
set(_IMPORT_PREFIX)
# Loop over all imported files and verify that they actually exist
foreach(_cmake_target IN LISTS _cmake_import_check_targets)
foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
if(NOT EXISTS "${_cmake_file}")
message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
\"${_cmake_file}\"
but this file does not exist. Possible reasons include:
* The file was deleted, renamed, or moved to another location.
* An install or uninstall procedure did not complete successfully.
* The installation package was faulty and contained
\"${CMAKE_CURRENT_LIST_FILE}\"
but not all the files it references.
")
endif()
endforeach()
unset(_cmake_file)
unset("_cmake_import_check_files_for_${_cmake_target}")
endforeach()
unset(_cmake_target)
unset(_cmake_import_check_targets)
# This file does not depend on other imported targets which have
# been exported from the same project but in a separate export set.
# Commands beyond this point should not need to know the version.
set(CMAKE_IMPORT_FILE_VERSION)
cmake_policy(POP)
GazeboYARPPluginsTargets-release.cmake
#----------------------------------------------------------------
# Generated CMake target import file for configuration "Release".
#----------------------------------------------------------------
# Commands may need to know the format version.
set(CMAKE_IMPORT_FILE_VERSION 1)
# Import target "GazeboYARPPlugins::gazebo_yarp_singleton" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_singleton APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_singleton PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_singleton.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_singleton )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_singleton "${_IMPORT_PREFIX}/bin/gazebo_yarp_singleton.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_rpc_clock" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_rpc_clock APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_rpc_clock PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_rpc_clock.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_rpc_clock )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_rpc_clock "${_IMPORT_PREFIX}/bin/gazebo_yarp_rpc_clock.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_rpc_worldinterface" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_rpc_worldinterface APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_rpc_worldinterface PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_rpc_worldinterface.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_rpc_worldinterface )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_rpc_worldinterface "${_IMPORT_PREFIX}/bin/gazebo_yarp_rpc_worldinterface.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_rpc_linkattacher" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_rpc_linkattacher APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_rpc_linkattacher PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_rpc_linkattacher.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_rpc_linkattacher )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_rpc_linkattacher "${_IMPORT_PREFIX}/bin/gazebo_yarp_rpc_linkattacher.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_camera" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_camera APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_camera PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_camera.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_camera )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_camera "${_IMPORT_PREFIX}/bin/gazebo_yarp_camera.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_clock" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_clock APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_clock PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_clock.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_clock )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_clock "${_IMPORT_PREFIX}/bin/gazebo_yarp_clock.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_controlboard" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_controlboard APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_controlboard PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_controlboard.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_controlboard )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_controlboard "${_IMPORT_PREFIX}/bin/gazebo_yarp_controlboard.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_externalwrench" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_externalwrench APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_externalwrench PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_externalwrench.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_externalwrench )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_externalwrench "${_IMPORT_PREFIX}/bin/gazebo_yarp_externalwrench.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_fakecontrolboard" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_fakecontrolboard APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_fakecontrolboard PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_fakecontrolboard.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_fakecontrolboard )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_fakecontrolboard "${_IMPORT_PREFIX}/bin/gazebo_yarp_fakecontrolboard.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_forcetorque" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_forcetorque APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_forcetorque PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_forcetorque.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_forcetorque )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_forcetorque "${_IMPORT_PREFIX}/bin/gazebo_yarp_forcetorque.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_imu" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_imu APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_imu PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_imu.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_imu )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_imu "${_IMPORT_PREFIX}/bin/gazebo_yarp_imu.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_inertial" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_inertial APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_inertial PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_inertial.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_inertial )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_inertial "${_IMPORT_PREFIX}/bin/gazebo_yarp_inertial.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_distributedinertials" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_distributedinertials APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_distributedinertials PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_distributedinertials.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_distributedinertials )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_distributedinertials "${_IMPORT_PREFIX}/bin/gazebo_yarp_distributedinertials.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_showmodelcom" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_showmodelcom APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_showmodelcom PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_showmodelcom.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_showmodelcom )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_showmodelcom "${_IMPORT_PREFIX}/bin/gazebo_yarp_showmodelcom.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_MultiCameraPlugin" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_MultiCameraPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_MultiCameraPlugin PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_MultiCameraPlugin.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_MultiCameraPlugin )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_MultiCameraPlugin "${_IMPORT_PREFIX}/bin/gazebo_yarp_MultiCameraPlugin.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_multicamera" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_multicamera APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_multicamera PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_multicamera.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_multicamera )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_multicamera "${_IMPORT_PREFIX}/bin/gazebo_yarp_multicamera.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_maissensor" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_maissensor APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_maissensor PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_maissensor.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_maissensor )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_maissensor "${_IMPORT_PREFIX}/bin/gazebo_yarp_maissensor.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_videotexture" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_videotexture APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_videotexture PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_videotexture.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_videotexture )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_videotexture "${_IMPORT_PREFIX}/bin/gazebo_yarp_videotexture.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_worldinterface" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_worldinterface APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_worldinterface PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_worldinterface.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_worldinterface )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_worldinterface "${_IMPORT_PREFIX}/bin/gazebo_yarp_worldinterface.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_linkattacher" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_linkattacher APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_linkattacher PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_linkattacher.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_linkattacher )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_linkattacher "${_IMPORT_PREFIX}/bin/gazebo_yarp_linkattacher.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_lasersensor" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_lasersensor APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_lasersensor PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_lasersensor.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_lasersensor )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_lasersensor "${_IMPORT_PREFIX}/bin/gazebo_yarp_lasersensor.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_depthCamera" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_depthCamera APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_depthCamera PROPERTIES
IMPORTED_LINK_INTERFACE_LIBRARIES_RELEASE "GazeboYARPPlugins::gazebo_yarp_lib_common;GazeboYARPPlugins::gazebo_yarp_singleton;YARP::YARP_init;YARP::YARP_os;YARP::YARP_sig;YARP::YARP_dev;YARP::YARP_math;YARP::YARP_cv;YARP::YARP_robotinterface;SimTKcommon;SimTKmath;SimTKsimbody;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libgazebo.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_client.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gui.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_sensors.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_rendering.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_physics.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_ode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_transport.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_msgs.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_util.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_common.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_gimpact.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opcode.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/gazebo_opende_ou.lib;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/libprotobuf.lib;sdformat9::sdformat9;OgreBites;winmm;imm32;version;msimg32;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2main.lib;C:/Users/fbergonti/AppData/Local/mambaforge/envs/test2_davide/Library/lib/SDL2.lib;OgreHLMS;OgreMeshLodGenerator;OgreOverlay;OgrePaging;OgreProperty;OgreRTShaderSystem;OgreTerrain;OgreVolume;OgreMain;OgreTerrain;OgrePaging;ignition-math6::requested;ignition-transport8::requested;ignition-msgs5::requested;ignition-common3::ignition-common3-graphics;ignition-fuel_tools4::requested;TBB::tbb;Boost::thread;Boost::system;Boost::filesystem;Boost::program_options;Boost::regex;Boost::iostreams;Boost::date_time;DepthCameraPlugin"
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_depthCamera.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_depthCamera )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_depthCamera "${_IMPORT_PREFIX}/bin/gazebo_yarp_depthCamera.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_contactloadcellarray" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_contactloadcellarray APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_contactloadcellarray PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_contactloadcellarray.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_contactloadcellarray )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_contactloadcellarray "${_IMPORT_PREFIX}/bin/gazebo_yarp_contactloadcellarray.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_modelposepublisher" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_modelposepublisher APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_modelposepublisher PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_modelposepublisher.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_modelposepublisher )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_modelposepublisher "${_IMPORT_PREFIX}/bin/gazebo_yarp_modelposepublisher.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_basestate" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_basestate APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_basestate PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_basestate.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_basestate )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_basestate "${_IMPORT_PREFIX}/bin/gazebo_yarp_basestate.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_configurationoverride" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_configurationoverride APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_configurationoverride PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_configurationoverride.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_configurationoverride )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_configurationoverride "${_IMPORT_PREFIX}/bin/gazebo_yarp_configurationoverride.dll" )
# Import target "GazeboYARPPlugins::gazebo_yarp_robotinterface" for configuration "Release"
set_property(TARGET GazeboYARPPlugins::gazebo_yarp_robotinterface APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GazeboYARPPlugins::gazebo_yarp_robotinterface PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/gazebo_yarp_robotinterface.dll"
)
list(APPEND _cmake_import_check_targets GazeboYARPPlugins::gazebo_yarp_robotinterface )
list(APPEND _cmake_import_check_files_for_GazeboYARPPlugins::gazebo_yarp_robotinterface "${_IMPORT_PREFIX}/bin/gazebo_yarp_robotinterface.dll" )
# Commands beyond this point should not need to know the version.
set(CMAKE_IMPORT_FILE_VERSION)
|
From the message It seems that the .lib library is correctly created, however to be sure you can double check that the file C:/Users/fbergonti/Desktop/test/gazebo-yarp-plugins/build/lib/Release/gazebo_yarp_singleton.lib actually exists and it is not empty. Assuming this is the case, the problems seems that the import library is not installed. |
As a solution, can you try to add
|
@FabioBergonti @HosameldinMohamed can you try the fix in #657 ? |
it works 🎉 |
Released in 4.8.0 that will be available in a few minutes also on conda-forge (see conda-forge/gazebo-yarp-plugins-feedstock#10). |
When trying to build a plugin that uses some of the libraries of gazebo-yarp-plugins. Following http://robotology.github.io/gazebo-yarp-plugins/master/use_as_library.html
I get the following error when generating CMake:
I'm working with Windows and conda
cc @davidegorbani @HosameldinMohamed @traversaro @Nicogene
The text was updated successfully, but these errors were encountered: