mirror of
https://github.com/eclipse/upm.git
synced 2025-03-25 17:59:59 +03:00

Removed 'upm' string, capitalized first character, added descriptions where necessary. Signed-off-by: Noel Eck <noel.eck@intel.com>
12 lines
352 B
CMake
12 lines
352 B
CMake
include (CheckFunctionExists)
|
|
include (CheckLibraryExists)
|
|
include (CheckIncludeFiles)
|
|
check_library_exists (${MRAA_LIBRARIES} mraa_firmata_init "" HAVE_FIRMATA)
|
|
if (HAVE_FIRMATA)
|
|
set (libname "curieimu")
|
|
set (libdescription "Curie IMU via Firmata")
|
|
set (module_src ${libname}.cpp)
|
|
set (module_hpp ${libname}.hpp)
|
|
upm_module_init ()
|
|
endif ()
|