imraa: add first version of imraa, the mraa initialisation daemon
Imraa allows the automatic flashing and setup of arduino101 subplatforms as well as the initial setup of GPIO/i2c devices Signed-off-by: Longwei Su <lsu@ics.com> Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
committed by
Brendan Le Foll
parent
de42b9558f
commit
a52ce5d5bb
15
imraa/CMakeLists.txt
Normal file
15
imraa/CMakeLists.txt
Normal file
@@ -0,0 +1,15 @@
|
||||
add_executable (imraa imraa.c)
|
||||
|
||||
include_directories (${PROJECT_SOURCE_DIR}/api)
|
||||
include_directories (${PROJECT_SOURCE_DIR}/include)
|
||||
include_directories (${PROJECT_SOURCE_DIR}/api/mraa)
|
||||
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DIMRAA=1")
|
||||
|
||||
find_package (JSON-C REQUIRED)
|
||||
include_directories (${JSON-C_INCLUDE_DIR})
|
||||
target_link_libraries (imraa mraa ${JSON-C_LIBRARIES} udev)
|
||||
|
||||
set_property (TARGET imraa PROPERTY C_STANDARD 99)
|
||||
|
||||
install (TARGETS imraa DESTINATION bin)
|
||||
Reference in New Issue
Block a user