11 lines
463 B
CMake
11 lines
463 B
CMake
|
|
set (libname "adafruitms1438")
|
||
|
|
set (libdescription "upm module for the Adafruit Motor Shield 1438")
|
||
|
|
set (module_src ${libname}.cxx)
|
||
|
|
set (module_h ${libname}.h)
|
||
|
|
set (reqlibname "upm-pca9685")
|
||
|
|
include_directories("../pca9685")
|
||
|
|
upm_module_init()
|
||
|
|
target_link_libraries(${libname} pca9685)
|
||
|
|
swig_link_libraries (jsupm_${libname} -lupm-pca9685 ${MRAA_LIBRARIES} ${NODE_LIBRARIES})
|
||
|
|
swig_link_libraries (pyupm_${libname} -lupm-pca9685 ${MRAA_LIBRARIES} ${NODE_LIBRARIES})
|