1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-06 00:35:23 +02:00
tldr/pages/common/projucer.md
Managor a5833ce758
*: make more information links dynamic (#16244)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2025-04-23 10:24:12 +03:00

28 lines
758 B
Markdown

# Projucer
> A project manager for JUCE framework applications.
> More information: <https://docs.juce.com/master/projucer_manual.html#projucer_manual_tools_command_line_tools>.
- Display information about a project:
`Projucer --status {{path/to/project_file}}`
- Resave all files and resources in a project:
`Projucer --resave {{path/to/project_file}}`
- Update the version number in a project:
`Projucer --set-version {{version_number}} {{path/to/project_file}}`
- Generate a JUCE project from a PIP file:
`Projucer --create-project-from-pip {{path/to/PIP}} {{path/to/output}}`
- Remove all JUCE-style comments (`//=====`, `//-----` or `///////`):
`Projucer --tidy-divider-comments {{path/to/target_folder}}`
- Display help:
`Projucer --help`