Shows how to use JUCE components only by programming code (c++17).
juce_gui_basics examples contains juce_events events examples.
- Timers contains Timers examples.
juce_gui_basics examples contains juce_gui_basics (GUI) examples.
- Hello World contains JUCE "Hello, World!" examples.
- Applications contains applications examples.
- Buttons contains Buttons examples.
- Widgets contains widgets examples.
- Others contains others examples.
git clone /~https://github.com/gammasoft71/Examples_JUCE
To build this project, open "Terminal" and type following lines:
mkdir build && cd build
cmake ..
start JUCEExamples.sln
Select any project and type Ctrl+F5 to build and run it.
mkdir build && cd build
cmake .. -G "Xcode"
open ./JUCEExamples.xcodeproj
Select any project and type Cmd+R to build and run it.
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.
mkdir build
cd build
cmake ..
cmake --build . --config Debug
./AnyProject
This project run with JUCE 7.0.12 or above and CMake 3.22 or above.