Skip to content

Commit

Permalink
Fixes for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Dec 5, 2023
1 parent 9b5c24e commit 8dad757
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/arm-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:

- name: Build
shell: bash
run: cmake --build build --config Debug --parallel | xcpretty
run: cmake --build build --config Debug --parallel --target BYOD_AU | xcpretty
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:

- name: Build
shell: bash
run: cmake --build build --config Release --parallel 3
run: cmake --build build --config Release --parallel 3 --target BYOD_Standalone BYOD_VST3 BYOD_CLAP BYOD_headless

- name: Unit Tests
if: runner.os == 'Linux'
Expand Down
3 changes: 3 additions & 0 deletions src/headless/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ target_include_directories(BYOD_headless
../../modules/ea_variant
${juce_includes}
)
if(TARGET math_approx)
target_include_directories(BYOD_headless PRIVATE ../../modules/math_approx/include)
endif()

target_link_libraries(BYOD_headless PUBLIC
BinaryData
Expand Down

0 comments on commit 8dad757

Please sign in to comment.