HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

Projucer — A project manager for JUCE framework applications. More information: <https://docs.juce.com/master/p

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandframeworkcliprojucerformanagerjuceproject

Problem

How to use the Projucer command: A project manager for JUCE framework applications. More information: <https://docs.juce.com/master/projucer_manual.html#projucer_manual_tools_command_line_tools>.

Solution

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

Code Snippets

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}}

Context

tldr-pages: common/Projucer

Revisions (0)

No revisions yet.