Rename device4 into device_mcu
Signed-off-by: Jacki <jacki@thejackimonster.de>
This commit is contained in:
parent
776fb7204d
commit
09ad6dc04e
12 changed files with 894 additions and 893 deletions
17
examples/debug_mcu/CMakeLists.txt
Normal file
17
examples/debug_mcu/CMakeLists.txt
Normal 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}
|
||||
)
|
Reference in a new issue