File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -175,6 +175,12 @@ jobs:
175175 submodules : recursive
176176 fetch-depth : 0
177177
178+ - name : Install winget
179+ uses : Cyberboss/install-winget@v1
180+
181+ - name : Install jack
182+ run : winget install jack2 --disable-interactivity --accept-source-agreements
183+
178184 - name : Create Build Environment
179185 run : cmake -E make_directory ${{github.workspace}}/build
180186
@@ -230,6 +236,12 @@ jobs:
230236 submodules : recursive
231237 fetch-depth : 0
232238
239+ - name : Install winget
240+ uses : Cyberboss/install-winget@v1
241+
242+ - name : Install jack
243+ run : winget install jack2 --disable-interactivity --accept-source-agreements
244+
233245 - name : Create Build Environment
234246 run : cmake -E make_directory ${{github.workspace}}/build
235247
Original file line number Diff line number Diff line change @@ -331,6 +331,7 @@ include_directories(/usr/local/include)
331331link_directories (/usr/local/lib)
332332endif ()
333333
334+ # macOS includes for jack
334335if (APPLE )
335336 if (MACOS_LEGACY)
336337 include_directories (/usr/local/include )
@@ -339,6 +340,11 @@ if(APPLE)
339340 endif ()
340341endif ()
341342
343+ # Windows include for jack
344+ if (MSVC )
345+ include_directories ("C:\\ Program Files\\ JACK2\\ include" )
346+ endif ()
347+
342348list (APPEND PLUGDATA_COMPILE_DEFINITIONS JUCE_MODAL_LOOPS_PERMITTED=1)
343349
344350list (APPEND PLUGDATA_INCLUDE_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR} /Libraries/ELSE/sfont~/" )
You can’t perform that action at this time.
0 commit comments