This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nrealAirLinuxDriver/examples/debug_d3/CMakeLists.txt
Jacki 1705703b73
Rename nreal to xreal in readme, cmake and binaries
Signed-off-by: Jacki <jacki@thejackimonster.de>
2024-03-02 02:22:50 +01:00

17 lines
292 B
CMake

cmake_minimum_required(VERSION 3.16)
project(xrealAirDebugD3 C)
set(CMAKE_C_STANDARD 17)
add_executable(
xrealAirDebugD3
src/debug.c
)
target_include_directories(xrealAirDebugD3
BEFORE PUBLIC ${XREAL_AIR_INCLUDE_DIR}
)
target_link_libraries(xrealAirDebugD3
${XREAL_AIR_LIBRARY}
)