Skip to content

Commit

Permalink
make building plugins optional
Browse files Browse the repository at this point in the history
  • Loading branch information
myk002 committed Apr 13, 2024
1 parent 60fbd5d commit bfecf17
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ on:
platform-files:
type: boolean
default: true
plugins:
type: boolean
default: true
common-files:
type: boolean
default: true
Expand Down Expand Up @@ -126,7 +129,7 @@ jobs:
${{ inputs.platform-files && '-DCMAKE_C_COMPILER_LAUNCHER=ccache' || '' }} \
${{ inputs.platform-files && '-DCMAKE_CXX_COMPILER_LAUNCHER=ccache' || '' }} \
-DBUILD_LIBRARY:BOOL=${{ inputs.platform-files }} \
-DBUILD_PLUGINS:BOOL=${{ inputs.platform-files }} \
-DBUILD_PLUGINS:BOOL=${{ inputs.platform-files && inputs.plugins }} \
-DBUILD_STONESENSE:BOOL=${{ inputs.stonesense }} \
-DBUILD_DFLAUNCH:BOOL=${{ inputs.launchdf }} \
-DBUILD_DEV_PLUGINS:BOOL=${{ inputs.extras }} \
Expand Down

0 comments on commit bfecf17

Please sign in to comment.