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/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

19 lines
No EOL
365 B
CMake

cmake_minimum_required(VERSION 3.16)
project(xrealAirLinuxDriver C)
set(CMAKE_C_STANDARD 17)
add_subdirectory(interface_lib)
add_subdirectory(examples)
add_executable(xrealAirLinuxDriver
src/driver.c
)
target_include_directories(xrealAirLinuxDriver
BEFORE PUBLIC ${XREAL_AIR_INCLUDE_DIR}
)
target_link_libraries(xrealAirLinuxDriver
${XREAL_AIR_LIBRARY}
)