Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,19 @@ jobs:
with:
submodules: recursive

- uses: ilammy/msvc-dev-cmd@v1
if: runner.os == 'Windows'
with:
arch: x64

- name: install linux dependencies
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt install libasound2-dev libxinerama-dev libx11-dev libxext-dev libfreetype6-dev libwebkit2gtk-4.1-dev libglu1-mesa-dev xvfb ninja-build

- name: configure
run: cmake -B build .
run: cmake --preset default

- name: build
run: cmake --build build
run: cmake --build __build --config Release
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ Thumbs.db
# IDE's
.idea/*
cmake-build-*/*
*.user
*.user

# CMake
__build
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.15)
cmake_minimum_required(VERSION 3.31)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64")
Expand Down
22 changes: 22 additions & 0 deletions CMakePresets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"version": 3,
"configurePresets": [
{
"name": "default",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/__build"
}
],
"buildPresets": [
{
"name": "release",
"configurePreset": "default",
"configuration": "Release"
},
{
"name": "debug",
"configurePreset": "default",
"configuration": "Debug"
}
]
}
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Eq
<div>
A simple but fully functional equalizer plugin made with the Juce framework, customizing Juce's LookAndFeel class and the behavior of some components. Available as VST3 (Linux, Mac and Windows) and AudioUnit (Mac). Work in progress.
An equalizer plugin made with the JUCE framework, customizing JUCE's LookAndFeel class and the behavior of some components. Available as VST3 (Linux, Mac and Windows) and AudioUnit (Mac).
</div>
<br>
<div align="center">
Expand All @@ -15,16 +15,16 @@ A simple but fully functional equalizer plugin made with the Juce framework, cus
<br>

## Dependencies
Juce: https://github.com/juce-framework/JUCE (version 8.0.12, already included as a submodule)
JUCE: https://github.com/juce-framework/JUCE (version 8.0.12, already included as a submodule)
<br>
<br>

## Building
```
git clone https://github.com/witte/Eq.git --recursive
cd Eq
cmake -S . -B build
cmake --build build # Plugin will be at 'build/Eq_artefacts/VST3'
cmake --preset default
cmake --build __build --config Release # Plugin will be at '__build/Release/Eq_artefacts/VST3'
```
<br>

Expand Down