All Projects → McMartin → Frut

McMartin / Frut

Licence: gpl-3.0
Building JUCE projects using CMake made easy

Projects that are alternatives of or similar to Frut

Cpp Boilerplate
A small c++ template with modern CMake
Stars: ✭ 197 (-13.6%)
Mutual labels:  cmake
Cmake Scripts
A selection of useful scripts for use in CMake projects, include code coverage, sanitizers, and dependency graph generation.
Stars: ✭ 202 (-11.4%)
Mutual labels:  cmake
Repository
Repository of LuaDist modules available for installation using the luadist-git command line tool
Stars: ✭ 218 (-4.39%)
Mutual labels:  cmake
Methanekit
🎲 Modern 3D graphics made simple with cross-platform C++17 meta-API on top of DirectX 12 & Metal (Vulkan is coming)
Stars: ✭ 197 (-13.6%)
Mutual labels:  cmake
Vcmi
Open-source engine for Heroes of Might and Magic III
Stars: ✭ 2,514 (+1002.63%)
Mutual labels:  cmake
Easy.messagehub
No need for .NET Events! A thread-safe, high performance & easy to use cross platform implementation of the Event Aggregator Pattern.
Stars: ✭ 208 (-8.77%)
Mutual labels:  easy
Pothossdr
Pothos SDR windows development environment
Stars: ✭ 193 (-15.35%)
Mutual labels:  cmake
React Landing Page Template
A simple react one page landing page templates for startups/companies
Stars: ✭ 224 (-1.75%)
Mutual labels:  easy
Papyros
General issue tracking and wikis for Papyros
Stars: ✭ 205 (-10.09%)
Mutual labels:  cmake
Skui
Skia-based C++ UI framework
Stars: ✭ 218 (-4.39%)
Mutual labels:  cmake
Astera
A C99 Cross Platform 2D Game Library
Stars: ✭ 193 (-15.35%)
Mutual labels:  cmake
Fixed point
C++ Binary Fixed-Point Arithmetic
Stars: ✭ 199 (-12.72%)
Mutual labels:  cmake
Engine
A basic cross-platform 3D game engine
Stars: ✭ 208 (-8.77%)
Mutual labels:  cmake
Django Easy Timezones
Easy timezones for Django based on GeoIP
Stars: ✭ 195 (-14.47%)
Mutual labels:  easy
Ios Cmake
A blank iOS app build system written in CMake. Includes building a dynamically linked C++ framework and bundling it into the app.
Stars: ✭ 220 (-3.51%)
Mutual labels:  cmake
Wiiuse
WiiUse "feature complete" cross-platform Wii Remote access library
Stars: ✭ 196 (-14.04%)
Mutual labels:  cmake
Directx Vs Templates
Direct3D Visual Studio Templates
Stars: ✭ 205 (-10.09%)
Mutual labels:  cmake
Lirios
🏠 General issue tracking and wiki for Liri
Stars: ✭ 228 (+0%)
Mutual labels:  cmake
Ledgersmb
Repository for the LedgerSMB project -- web app for accounting & ERP
Stars: ✭ 222 (-2.63%)
Mutual labels:  projects
Compiler
Pawn compiler for SA-MP with bug fixes and new features - runs on Windows, Linux, macOS
Stars: ✭ 209 (-8.33%)
Mutual labels:  cmake

|Code_of_Conduct| |AppVeyor| |Azure_Pipelines| |Read_the_Docs|

.. image:: FRUT.svg :target: https://github.com/McMartin/FRUT :alt: FRUT

FRUT makes it easy to build JUCE_ projects using CMake_ instead of Projucer_. It enables more flexibility in project architecture, simplified CI setup, and easier integration with other JUCE and non-JUCE projects. Converting an existing JUCE project to FRUT is easy, and you don't need to be a CMake expert to use it!

In short

  • Requirements

    • CMake (3.4 minimum, or higher depending on the target platform <#supported-projucer-exporters>__)
    • JUCE (4.2.0 minimum)
  • Supported platforms

    • iOS
    • Linux
    • macOS
    • Windows (MSVC and MinGW)
  • Documentation - https://frut.readthedocs.io

  • Contributing

    • Contributions are welcome! See CONTRIBUTING.md_ for more details.
    • All contributors are recognized <#contributors>__

Table of Contents

.. contents:: :local: :backlinks: none

Background

JUCE_ comes with its own project generation tool, Projucer_, which is very useful when starting a JUCE project. However, Projucer doesn't scale well when you want to make some aspects of your project configurable, when you want to add external libraries, when you want to use Continuous Integration, or when you want to manage several projects at once.

FRUT was created to overcome these limitations, while making it very easy to migrate an existing JUCE project that uses Projucer. Since FRUT is based on CMake_, you also get access to many great features of CMake, including testing <https://cmake.org/cmake/help/latest/manual/ctest.1.html>__ and packaging <https://cmake.org/cmake/help/latest/manual/cpack.1.html>__ utilities.

Contents

FRUT currently contains:

  • Jucer2CMake, a console application that converts .jucer project files into ready-to-use CMakeLists.txt files,

  • Reprojucer.cmake, a CMake module that provides high-level functions to reproduce how a JUCE project is defined in Projucer,

  • Jucer2Reprojucer (deprecated in favor of Jucer2CMake), a console application that converts .jucer project files into ready-to-use CMakeLists.txt files that include and use Reprojucer.cmake,

  • several CMakeLists.txt files generated from existing .jucer project files, including:

    • examples and extras projects from JUCE 4.2.0_ (in generated/JUCE-4.2.0_)
    • examples and extras projects from JUCE 4.3.1_ (in generated/JUCE-4.3.1_)
    • examples and extras projects from JUCE 5.0.0_ (in generated/JUCE-5.0.0_)
    • examples and extras projects from JUCE 5.2.1_ (in generated/JUCE-5.2.1_)
    • examples and extras projects from JUCE 5.3.1_ (in generated/JUCE-5.3.1_)
    • examples and extras projects from JUCE 5.4.3_ (in generated/JUCE-5.4.3_)
    • examples and extras projects from JUCE 5.4.7_ (in generated/JUCE-5.4.7_)
    • examples and extras projects from JUCE 6.0.5_ (in generated/JUCE-6.0.5_)

Requirements

  • CMake, version 3.4 minimum
  • JUCE, version 4.2.0 minimum

Supported Projucer exporters

Jucer2CMake, Reprojucer.cmake, and Jucer2Reprojucer (deprecated in favor of Jucer2CMake) support the following Projucer exporters (also known as "export targets"):

.. raw:: html

Supported Exporter CMake requirements and options Missing features
✔️ Xcode (MacOSX) 2 unsupported Xcode exporter settings
✔️ Xcode (iOS) version 3.14 minimum
-G Xcode -DCMAKE_SYSTEM_NAME=iOS
✔️ Visual Studio 2019 version 3.14 minimum
✔️ Visual Studio 2017 version 3.7 minimum
(3.13.3 when VS 2019 is installed)
✔️ Visual Studio 2015
✔️ Visual Studio 2013
✔️ Linux Makefile
Android
✔️ Code::Blocks (Windows)
✔️ Code::Blocks (Linux)

Documentation

You can read the documentation of FRUT on Read the Docs: https://frut.readthedocs.io

Getting started

Let's consider that you have a copy of JUCE, a copy of FRUT and a JUCE project called MyGreatProject following this folder structure: ::

├── FRUT/ ├── JUCE/ └── MyGreatProject/ ├── Source/ └── MyGreatProject.jucer

We first build and install FRUT with CMake: ::

$ cd /FRUT/

$ mkdir build && cd build/

$ cmake .. -DCMAKE_INSTALL_PREFIX="../prefix" -DJUCE_ROOT="../../JUCE" ... -- Configuring done -- Generating done -- Build files have been written to: /FRUT/build

$ cmake --build . --target install

or

$ cmake --build . --target install --parallel # with CMake 3.12 or later ...

If it fails to build and install, please report the problem by creating a new issue on GitHub: https://github.com/McMartin/FRUT/issues/new.

Then we convert MyGreatProject.jucer to a new CMakeLists.txt file: ::

$ cd /MyGreatProject/

$ ../FRUT/prefix/FRUT/bin/Jucer2CMake reprojucer MyGreatProject.jucer ../FRUT/prefix/FRUT/cmake/Reprojucer.cmake

/MyGreatProject/CMakeLists.txt has been successfully generated.

Now we can build MyGreatProject using CMake: ::

$ cd /MyGreatProject/

$ mkdir build && cd build/

$ cmake .. -G ... -- Configuring done -- Generating done -- Build files have been written to: /MyGreatProject/build

$ cmake --build .

or

$ cmake --build . -- -parallelizeTargets # when is Xcode

or

$ cmake --build . --parallel # with CMake 3.12 or later ...

<generator> can be one of many CMake Generators_ supported by your platform, including Ninja, NMake Makefiles (on Windows), Unix Makefiles (on Linux and macOS), Visual Studio 2013, 2015, 2017 and 2019 (on Windows), and Xcode (on macOS).

Contributing

Contributions to FRUT are very welcomed and you can contribute even if you don't know anything about CMake. See the CONTRIBUTING.md_ file for more details.

Contributors

FRUT follows the all-contributors_ specification and is brought to you by these awesome contributors:

.. raw:: html


Alain Martin

💻 👀 📖

Matthieu Talbot

👀 💻 🐛

Florian Goltz

💻

Fabien Roussel

🐛 👀

Xavier Jouvenot

🐛 👀

Nikolai Wuttke

👀

Dominik Grzelak

🐛

Dennis Scheffer

🐛 💻

Scott Wheeler

💻 🐛

Iqra Shahzad

🐛

Romain Clement

🐛

Stijn Frishert

🐛

Jerry Chan

🐛 👀

Frank Lange

🐛

Johannes Elliesen

🐛 💻

David Holland

💻

Dimitri Sudell

🐛

Dan Raviv

🐛 👀

Rory Walsh

🐛

Eyal Amir

🐛

Michael Hetrick

🐛

Alex

💻 👀

Alexey Romanoff

🐛

License

|GPLv3|

FRUT is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

FRUT is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LICENSE_ file for more details.

.. |Code_of_Conduct| image:: https://img.shields.io/badge/code%20of%20conduct-Contributor%20Covenant-blue.svg?style=flat :target: CODE_OF_CONDUCT.md :alt: Contributor Covenant Code of Conduct

.. |AppVeyor| image:: https://ci.appveyor.com/api/projects/status/github/McMartin/frut?branch=main&svg=true :target: https://ci.appveyor.com/project/McMartin/frut :alt: AppVeyor build status

.. |Azure_Pipelines| image:: https://dev.azure.com/McMartin/FRUT/_apis/build/status/McMartin.FRUT?branchName=main :target: https://dev.azure.com/McMartin/FRUT/_build?definitionId=2 :alt: Azure Pipelines build status

.. |Read_the_Docs| image:: https://readthedocs.org/projects/frut/badge/?version=latest :target: https://frut.readthedocs.io :alt: Documentation status

.. |GPLv3| image:: https://www.gnu.org/graphics/gplv3-127x51.png :target: https://www.gnu.org/licenses/gpl.html :alt: GNU General Public License

.. _CONTRIBUTING.md: CONTRIBUTING.md .. _LICENSE: LICENSE .. _generated/JUCE-4.2.0: generated/JUCE-4.2.0 .. _generated/JUCE-4.3.1: generated/JUCE-4.3.1 .. _generated/JUCE-5.0.0: generated/JUCE-5.0.0 .. _generated/JUCE-5.2.1: generated/JUCE-5.2.1 .. _generated/JUCE-5.3.1: generated/JUCE-5.3.1 .. _generated/JUCE-5.4.3: generated/JUCE-5.4.3 .. _generated/JUCE-5.4.7: generated/JUCE-5.4.7 .. _generated/JUCE-6.0.5: generated/JUCE-6.0.5

.. _CMake Generators: https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html .. _CMake: https://cmake.org .. _FRUT: https://github.com/McMartin/FRUT .. _JUCE 4.2.0: https://github.com/juce-framework/JUCE/tree/4.2.0 .. _JUCE 4.3.1: https://github.com/juce-framework/JUCE/tree/4.3.1 .. _JUCE 5.0.0: https://github.com/juce-framework/JUCE/tree/5.0.0 .. _JUCE 5.2.1: https://github.com/juce-framework/JUCE/tree/5.2.1 .. _JUCE 5.3.1: https://github.com/juce-framework/JUCE/tree/5.3.1 .. _JUCE 5.4.3: https://github.com/juce-framework/JUCE/tree/5.4.3 .. _JUCE 5.4.7: https://github.com/juce-framework/JUCE/tree/5.4.7 .. _JUCE 6.0.5: https://github.com/juce-framework/JUCE/tree/6.0.5 .. _JUCE: https://github.com/juce-framework/JUCE .. _Projucer: https://juce.com/discover/projucer .. _all-contributors: https://github.com/all-contributors/all-contributors

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].