mirror of
https://github.com/eclipse/upm.git
synced 2025-11-01 23:54:55 +03:00
Test commit for building C UPM modules.
* Added C include directory
* Added C utilities directory
* Rename C++ upm.h -> upm.hpp to make room for C upm.h
* Added upm_mixed_module_init function to src/CMakeLists.txt. This
function takes filesnames similar to upm_module_init and does a
bit of processing before calling upm_module_init.
* Added c example directory. Changed c++ example names.
* Added dfrph implemention for testing (C++ wraps C). Added mraa
to .pc requires for dfrph. Tested against stand-alone project.
Added dfrph c example.
* Update implemention of pkg-config file generation.
* Added two cmake cache variables: BUILDCPP and BUILDFTI
* Removed src from swig_add_module calls, added libname to
swig_link_libraries calls. Shrinks swig'ed binaries by ~13%.
* Added install target in upm/CMakeLists.txt to install C header,
directory. Is this where we want this?
* C FTI header directory is include/fti
Signed-off-by: Noel Eck <noel.eck@intel.com>
10 lines
213 B
CMake
10 lines
213 B
CMake
upm_mixed_module_init (NAME dfrph
|
|
DESCRIPTION "upm dfrobot pH sensor"
|
|
C_HDR dfrph.h
|
|
C_SRC dfrph.c
|
|
CPP_HDR dfrph.hpp
|
|
CPP_SRC dfrph.cxx
|
|
FTI_SRC dfrph_fti.c
|
|
CPP_WRAPS_C
|
|
REQUIRES mraa)
|