Skip to content

gammasoft71/Examples_JUCE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JUCE examples

Shows how to use JUCE components only by programming code (c++17).

JUCE

juce_gui_basics examples contains juce_events events examples.

  • Timers contains Timers examples.

juce_gui_basics examples contains juce_gui_basics (GUI) examples.

Download

git clone https://github.com/gammasoft71/Examples_JUCE

Build and run

To build this project, open "Terminal" and type following lines:

Windows

mkdir build && cd build
cmake ..
start JUCEExamples.sln

Select any project and type Ctrl+F5 to build and run it.

macOS :

mkdir build && cd build
cmake .. -G "Xcode"
open ./JUCEExamples.xcodeproj

Select any project and type Cmd+R to build and run it.

Linux with Code::Blocks :

mkdir build
cd build
cmake .. -G "CodeBlocks - Unix Makefiles"
xdg-open ./JUCEExamples.cbp > /dev/null 2>&1

Select any project and type F10 to build and run it.

Linux :

mkdir build
cd build
cmake ..
cmake --build . --config Debug
./AnyProject

Remarks

This project run with JUCE 7.0.12 or above and CMake 3.22 or above.