* Removed all C++ code and renamed all .cxx extensions to .c * All functions are renamed to maa_ and modules are for example called maa_pwm * Cmake can now 'make doc' using a Doxyfile.in to create documentation * examples/ have been updated but swig generated API is untested Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
12 lines
271 B
CMake
12 lines
271 B
CMake
prefix=@CMAKE_INSTALL_PREFIX@
|
|
exec_prefix=${prefix}
|
|
libdir=${exec_prefix}/lib@LIB_SUFFIX@
|
|
includedir=${prefix}/include
|
|
|
|
Name: maa
|
|
Description: Low Level Skeleton Library for Communication
|
|
Version: @maa_VERSION_STRING@
|
|
|
|
Libs: -L${libdir} -lmaa
|
|
Cflags: -I${includedir}/maa
|