📈
juce-cookbook
  • Introduction
  • Getting Started
    • Why JUCE?
    • Other Libraries
    • Resources
  • C++
    • IDE
    • Tools
    • Resources
  • Setup
    • macOS
    • Windows
    • Linux
    • Projucer vs. CMake
    • Create Project
    • Debugging
    • Documentation
  • Coding
    • User Interface
      • Component
      • Button
      • Look&Feel
    • Plug-in
      • Basics
      • Parameter
    • DSP
      • Basics
      • Create your own
    • Modules
    • Misc
    • Examples
    • Snippets
  • Testing
    • Unit tests
    • pluginval
    • Sanitizers
    • Profile
    • Benchmark
  • Continuous Integration
    • Travis CI
    • AppVeyor
    • Publish
  • Wish List
  • What's next
  • License
Powered by GitBook
On this page
  • How to run examples
  • Windows & macOS
  • Linux

Was this helpful?

Getting Started

How to run examples

Each chapter can be read individually, feel free to jump around and find sections that are of interest to you.

All of the example projects included in this repository are normal Projucer projects, so running them is the same as any other project created with the Projucer

  • Download JUCE

  • Build the Projucer

Windows & macOS

  • Open example projects .jucer file & save to generate the build files

  • Open the project in your IDE (Visual Studio / XCode)

  • Build

Linux

Make sure you add Projucer to your PATH.

cd $PROJECT_ROOT
Projucer --resave $PROJECT_NAME.jucer
cd Builds/LinuxMakefile
make config=[Release, Debug] -j8
PreviousIntroductionNextWhy JUCE?

Last updated 4 years ago

Was this helpful?