We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 52a67bc + ad85e0c commit 248f448Copy full SHA for 248f448
.github/workflows/build.yml
@@ -79,4 +79,10 @@ jobs:
79
- uses: actions/upload-artifact@v3
80
with:
81
name: aeolus-${{ matrix.name }}
82
- path: ${{ matrix.path }}
+ path: |
83
+ ${{ matrix.path }}/Standalone
84
+ ${{ matrix.path }}/AU
85
+ ${{ matrix.path }}/VST3
86
+ !${{ matrix.path }}/VST3/*.exp
87
+ !${{ matrix.path }}/VST3/*.lib
88
+ if-no-files-found: ignore
CMakeLists.txt
@@ -33,6 +33,10 @@ set(plugin_formats
33
Standalone
34
)
35
36
+if(APPLE)
37
+ list(APPEND plugin_formats AU)
38
+endif()
39
+
40
juce_add_plugin(${PROJECT_NAME}
41
VERSION "0.1.13"
42
PLUGIN_MANUFACTURER_CODE "Arbe"
0 commit comments