1
0
forked from BRT/arc

Update build documentation to reflect executable name change from ARCDesktopProject to ARC

This commit is contained in:
slava 2026-05-25 16:48:13 +05:00
parent 54edae7600
commit d3b109d87f
3 changed files with 7 additions and 7 deletions

4
.gitignore vendored
View File

@ -13,6 +13,7 @@ tests/mock_server/.mock_screenshots/
cmake_install.cmake
CMakeCache.txt
Makefile
compile_commands.json
.qt/
@ -23,8 +24,7 @@ Makefile
/Testing/
/.ninja_deps
/.ninja_log
/ARCDesktopProject_autogen/
/ARCDesktopProject
/ARC
/Contents/
/application.log
/database/app_data.db

View File

@ -1,4 +1,4 @@
# ARCDesktopProject — сборка и запуск
# ARC — сборка и запуск
## Windows (x64)
@ -19,7 +19,7 @@ cmake --build . --config Release
### Деплой Qt DLL
```bash
"C:\Qt\6.9.0\msvc2022_64\bin\windeployqt.exe" .\Release\ARCDesktopProject.exe
"C:\Qt\6.9.0\msvc2022_64\bin\windeployqt.exe" .\Release\ARC.exe
```
### Копирование vcpkg DLL
@ -44,7 +44,7 @@ copy database\app_data.db .\Release\database\app_data.db
```bash
cd Release
ARCDesktopProject.exe
ARC.exe
```
---
@ -77,5 +77,5 @@ cp ../database/app_data.db ./database/app_data.db
### Запуск
```bash
./ARCDesktopProject
./ARC
```

View File

@ -17,7 +17,7 @@ brew install qt tesseract leptonica
mkdir -p build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build .
./ARCDesktopProject
./ARC
```
Подробнее — см. [BUILD.md](BUILD.md) (macOS + Windows).