Rename device3 to device_imu

Signed-off-by: Jacki <jacki@thejackimonster.de>
This commit is contained in:
Jacki 2024-08-02 00:42:26 +02:00
parent 9d6b6ccc16
commit 776fb7204d
No known key found for this signature in database
GPG key ID: B404184796354C5E
8 changed files with 354 additions and 354 deletions

View 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}
)