docs: fix build options in README/README_IT (correct flags, dist/ path)

This commit is contained in:
2026-04-30 20:12:52 +02:00
parent 2a961ee075
commit 5f7bf03806
2 changed files with 14 additions and 18 deletions
+7 -9
View File
@@ -155,23 +155,21 @@ Pre-compiled DLL files have been removed from the distribution:
### Build ### Build
```cmd ```powershell
cd nsProcess
python build_plugin.py python build_plugin.py
``` ```
DLLs are copied to `plugins/{platform}/nsProcess.dll`. DLLs are copied to `dist/{platform}/nsProcess.dll`.
### Build Options ### Build Options
```powershell ```powershell
python build_plugin.py --config x86-unicode # Single architecture (x86-ansi|x86-unicode|amd64-unicode|all) python build_plugin.py --configs x86-unicode # Single architecture (x86-ansi|x86-unicode|amd64-unicode|all)
python build_plugin.py --toolset 2026 # Specific toolset (2022|2026|auto) python build_plugin.py --vs-version 2026 # Specific VS version (2022|2026|auto)
python build_plugin.py --jobs 4 # Number of parallel MSBuild jobs (default: CPU count) python build_plugin.py --clean # Clean dist/ before build
python build_plugin.py --clean # Clean dist/ before build
python build_plugin.py --install-dir "C:\NSIS\Plugins" # Copy to additional NSIS directory python build_plugin.py --install-dir "C:\NSIS\Plugins" # Copy to additional NSIS directory
python build_plugin.py --verbose # Extended MSBuild output python build_plugin.py --verbosity minimal # MSBuild verbosity (quiet|minimal|normal|detailed|diagnostic)
python build_plugin.py --version # Print version and exit python build_plugin.py --final # Force rebuild + clean (pre-release build)
``` ```
### Functional Changes ### Functional Changes
+7 -9
View File
@@ -147,23 +147,21 @@ I file DLL precompilati sono stati rimossi dalla distribuzione:
### Compilazione ### Compilazione
```cmd ```powershell
cd nsProcess
python build_plugin.py python build_plugin.py
``` ```
I DLL vengono copiati in `plugins/{platform}/nsProcess.dll`. I DLL vengono copiati in `dist/{platform}/nsProcess.dll`.
### Opzioni build ### Opzioni build
```powershell ```powershell
python build_plugin.py --config x86-unicode # Solo un'architettura (x86-ansi|x86-unicode|amd64-unicode|all) python build_plugin.py --configs x86-unicode # Solo un'architettura (x86-ansi|x86-unicode|amd64-unicode|all)
python build_plugin.py --toolset 2026 # Toolset specifico (2022|2026|auto) python build_plugin.py --vs-version 2026 # Versione VS specifica (2022|2026|auto)
python build_plugin.py --jobs 4 # Numero di job MSBuild paralleli (default: CPU count) python build_plugin.py --clean # Pulizia dist/ prima della build
python build_plugin.py --clean # Pulizia dist/ prima della build
python build_plugin.py --install-dir "C:\NSIS\Plugins" # Copia in directory NSIS aggiuntiva python build_plugin.py --install-dir "C:\NSIS\Plugins" # Copia in directory NSIS aggiuntiva
python build_plugin.py --verbose # Output MSBuild esteso python build_plugin.py --verbosity minimal # Verbosità MSBuild (quiet|minimal|normal|detailed|diagnostic)
python build_plugin.py --version # Stampa versione ed esce python build_plugin.py --final # Rebuild forzato + pulizia (build pre-release)
``` ```
### Modifiche funzionali ### Modifiche funzionali