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,17 +1,17 @@
|
|||
cmake_minimum_required(VERSION 3.16)
|
||||
project(nrealAirUpgradeMCU C)
|
||||
project(xrealAirUpgradeMCU C)
|
||||
|
||||
set(CMAKE_C_STANDARD 17)
|
||||
|
||||
add_executable(
|
||||
nrealAirUpgradeMCU
|
||||
src/upgrade.c
|
||||
xrealAirUpgradeMCU
|
||||
src/upgrade.c
|
||||
)
|
||||
|
||||
target_include_directories(nrealAirUpgradeMCU
|
||||
BEFORE PUBLIC ${NREAL_AIR_INCLUDE_DIR}
|
||||
target_include_directories(xrealAirUpgradeMCU
|
||||
BEFORE PUBLIC ${XREAL_AIR_INCLUDE_DIR}
|
||||
)
|
||||
|
||||
target_link_libraries(nrealAirUpgradeMCU
|
||||
${NREAL_AIR_LIBRARY}
|
||||
target_link_libraries(xrealAirUpgradeMCU
|
||||
${XREAL_AIR_LIBRARY}
|
||||
)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
//
|
||||
// Created by thejackimonster on 03.05.23.
|
||||
//
|
||||
// Copyright (c) 2023 thejackimonster. All rights reserved.
|
||||
// Copyright (c) 2023-2024 thejackimonster. All rights reserved.
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
int main(int argc, const char** argv) {
|
||||
if (argc <= 1) {
|
||||
printf("HOW TO USE IT:\n$ nrealAirUpgradeMCU <PATH>\n");
|
||||
printf("HOW TO USE IT:\n$ xrealAirUpgradeMCU <PATH>\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue