mirror of
https://github.com/eclipse/upm.git
synced 2025-03-20 23:47:31 +03:00

Removed 'upm' string, capitalized first character, added descriptions where necessary. Signed-off-by: Noel Eck <noel.eck@intel.com>
12 lines
335 B
CMake
12 lines
335 B
CMake
set (libname "h803x")
|
|
set (libdescription "Module for the Veris H803X (H8035/H8036)")
|
|
set (module_src ${libname}.cxx)
|
|
set (module_hpp ${libname}.hpp)
|
|
|
|
if (MODBUS_FOUND)
|
|
set (reqlibname "libmodbus")
|
|
include_directories(${MODBUS_INCLUDE_DIRS})
|
|
upm_module_init()
|
|
upm_target_link_libraries(${libname} ${MODBUS_LIBRARIES})
|
|
endif ()
|