jumake

Crates.iojumake
lib.rsjumake
version0.1.2
sourcesrc
created_at2024-07-27 15:07:34.159124
updated_at2024-07-29 10:19:52.947003
descriptionJuMake is a command-line tool designed to simplify and accelerate the process of setting up new JUCE projects using CMake.
homepagehttps://github.com/BaraMGB/JuMake
repositoryhttps://github.com/BaraMGB/JuMake
max_upload_size
id1317357
size73,315
Steffen Baranowsky (BaraMGB)

documentation

https://github.com/BaraMGB/JuMake

README

JuMake: CMake Project Initialization for JUCE

Overview

JuMake is a command-line tool designed to simplify and accelerate the process of setting up new JUCE projects using CMake. It automates the creation of project structures, initializes Git repositories, clones the JUCE framework as a submodule, allowing developers to focus on their core audio application development rather than project setup logistics.

Features

  • Quick Project Initialization: Create a new project structure with a single command.
  • CMake Integration: Automatically generate a CMakeLists.txt file tailored for audio development.
  • Source File Templates: Set up initial C++ files, including Main.cpp, MainComponent.cpp, and MainComponent.h.
  • Git Integration: Initialize a Git repository for version control and add the JUCE submodule.
  • JUCE Submodule: Automatically clones the JUCE framework as a submodule and integrates it into the project.
  • Cross-Platform Compatibility: Designed to work on Windows, macOS, and Linux.

Installation

  1. Install Rust: If you don't have Rust installed, download and install it from https://www.rust-lang.org/tools/install.
  2. Install JuMake:
cargo install jumake

Usage

Create a New Project

jumake new <project_name>

This command will:

  • Ask you, what kind of project do you want to create: GUI Application, Audio Plugin or Console App?
  • Create a new directory with the specified project_name.
  • Generate a basic CMakeLists.txt file.
  • Create a src directory with template C++ files.
  • Initialize a Git repository.
  • Clone the JUCE framework as a submodule.
  • Add the JUCE submodule to the CMakeLists.txt.

Build the Project

jumake build

This command will:

  • Create a jumake_build directory.
  • Run CMake to generate the build files.
  • Run CMake to build the project.

Run the Project

jumake run

This command will:

  • Build the project (if it hasn't been built already).
  • Run the executable or open the application bundle, depending on the platform and project type.

Add new Class to your project

jumake add <class_type> <class_name>

<class_type> can be class or component. Where class will be a simple c++-class and component will be a JuceComponent.

This command will:

  • Add new <class_name>.cpp and <class_name>.h files in the src directory
  • Add the cpp to the CMakeLists.txt ready for use.

Examples

Create a new JUCE GUI application:

jumake new MyJuceApp

Build the project:

cd MyJuceApp
jumake build

Run the application:

jumake run

Contributing

Contributions are welcome! Please see the CONTRIBUTING.md file for guidelines.

This project is licensed under the MIT License - see the LICENSE.md file for details.

Commit count: 0

cargo fmt