Rename device4 into device_mcu

Signed-off-by: Jacki <jacki@thejackimonster.de>
This commit is contained in:
Jacki 2024-08-02 00:52:44 +02:00
parent 776fb7204d
commit 09ad6dc04e
No known key found for this signature in database
GPG key ID: B404184796354C5E
12 changed files with 894 additions and 893 deletions

View file

@ -0,0 +1,17 @@
cmake_minimum_required(VERSION 3.16)
project(xrealAirDebugMCU C)
set(CMAKE_C_STANDARD 17)
add_executable(
xrealAirDebugMCU
src/debug.c
)
target_include_directories(xrealAirDebugMCU
BEFORE PUBLIC ${XREAL_AIR_INCLUDE_DIR}
)
target_link_libraries(xrealAirDebugMCU
${XREAL_AIR_LIBRARY}
)