Skip to content
Snippets Groups Projects

Draft: Merging all the motion controller drivers & handlers under libMotion

Open Hongtao Yang requested to merge yanght_libMotion into devel
1 unresolved thread
22 files
+ 13
34
Compare changes
  • Side-by-side
  • Inline
Files
22
+ 0
22
find_package( libgclib QUIET)
find_package( ZLIB )
if ( NOT "${LIBGCLIB_FOUND}" )
message(STATUS "Disabling libGalil due to missing dependencies (LIBGCLIB_FOUND = ${LIBGCLIB_FOUND})")
set(libGalil_FOUND FALSE PARENT_SCOPE)
return()
endif()
#
# Prepare the library
add_library(Galil SHARED)
target_sources(Galil
PRIVATE
arrays.cpp
gclibo.cpp
)
target_link_libraries(Galil ${LIBGCLIB_LIBRARIES} ${zlib_libraries} )
# Tell rest of labRemote that the library exists
set(libGalil_FOUND TRUE PARENT_SCOPE)
Loading