Rename device3 to device_imu
Signed-off-by: Jacki <jacki@thejackimonster.de>
This commit is contained in:
parent
9d6b6ccc16
commit
776fb7204d
8 changed files with 354 additions and 354 deletions
17
examples/debug_imu/CMakeLists.txt
Normal file
17
examples/debug_imu/CMakeLists.txt
Normal file
|
@ -0,0 +1,17 @@
|
|||
cmake_minimum_required(VERSION 3.16)
|
||||
project(xrealAirDebugIMU C)
|
||||
|
||||
set(CMAKE_C_STANDARD 17)
|
||||
|
||||
add_executable(
|
||||
xrealAirDebugIMU
|
||||
src/debug.c
|
||||
)
|
||||
|
||||
target_include_directories(xrealAirDebugIMU
|
||||
BEFORE PUBLIC ${XREAL_AIR_INCLUDE_DIR}
|
||||
)
|
||||
|
||||
target_link_libraries(xrealAirDebugIMU
|
||||
${XREAL_AIR_LIBRARY}
|
||||
)
|
Reference in a new issue