Rename nreal to xreal in readme, cmake and binaries
Signed-off-by: Jacki <jacki@thejackimonster.de>
This commit is contained in:
parent
2d7ab0d4fa
commit
1705703b73
7 changed files with 42 additions and 39 deletions
|
@ -1,19 +1,19 @@
|
|||
cmake_minimum_required(VERSION 3.16)
|
||||
project(nrealAirLinuxDriver C)
|
||||
project(xrealAirLinuxDriver C)
|
||||
|
||||
set(CMAKE_C_STANDARD 17)
|
||||
|
||||
add_subdirectory(interface_lib)
|
||||
add_subdirectory(examples)
|
||||
|
||||
add_executable(nrealAirLinuxDriver
|
||||
add_executable(xrealAirLinuxDriver
|
||||
src/driver.c
|
||||
)
|
||||
|
||||
target_include_directories(nrealAirLinuxDriver
|
||||
BEFORE PUBLIC ${NREAL_AIR_INCLUDE_DIR}
|
||||
target_include_directories(xrealAirLinuxDriver
|
||||
BEFORE PUBLIC ${XREAL_AIR_INCLUDE_DIR}
|
||||
)
|
||||
|
||||
target_link_libraries(nrealAirLinuxDriver
|
||||
${NREAL_AIR_LIBRARY}
|
||||
target_link_libraries(xrealAirLinuxDriver
|
||||
${XREAL_AIR_LIBRARY}
|
||||
)
|
Reference in a new issue