← 返回命令列表

Linux command

projucer 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

Open project

Projucer [project.jucer]

Create new project

Projucer --create-project [project-name]

Resave project files

Projucer --resave [project.jucer]

Set JUCE path

Projucer --set-global-search-path [os] [key] [path]

Generate Makefile

Projucer --resave [project.jucer]

Show status

Projucer --status [project.jucer]

说明

Projucer is the project management tool for the JUCE framework, used to create and maintain cross-platform audio applications and plugins. It reads .jucer project files that define source files, modules, and build targets, then generates native IDE projects for Xcode, Visual Studio, Linux Makefiles, and other build systems. The tool handles JUCE module management, allowing developers to add, remove, and configure framework modules that provide audio processing, GUI components, networking, and other functionality. When the project file changes, --resave regenerates all IDE files to keep them in sync. Projucer operates both as a graphical IDE for interactive development and as a command-line tool for CI/CD automation. The CLI mode supports creating new projects, regenerating build files, and querying project status without launching the GUI.

参数

--resave _FILE_
Regenerate IDE files.
--create-project _NAME_
Create new project.
--status _FILE_
Show project status.
--set-global-search-path _OS KEY PATH_
Set module path.
--help
Show help.

FAQ

What is the projucer command used for?

Projucer is the project management tool for the JUCE framework, used to create and maintain cross-platform audio applications and plugins. It reads .jucer project files that define source files, modules, and build targets, then generates native IDE projects for Xcode, Visual Studio, Linux Makefiles, and other build systems. The tool handles JUCE module management, allowing developers to add, remove, and configure framework modules that provide audio processing, GUI components, networking, and other functionality. When the project file changes, --resave regenerates all IDE files to keep them in sync. Projucer operates both as a graphical IDE for interactive development and as a command-line tool for CI/CD automation. The CLI mode supports creating new projects, regenerating build files, and querying project status without launching the GUI.

How do I run a basic projucer example?

Run `Projucer [project.jucer]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does --resave _FILE_ do in projucer?

Regenerate IDE files.