File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 3232 - name : Checkout
3333 uses : actions/checkout@v3
3434 - name : Configure
35- run : emcmake cmake -B buildwasm
35+ run : emcmake cmake -B buildwasm -D ADA_TOOLS=OFF
3636 - name : Build
3737 run : cmake --build buildwasm
3838 - name : Test
Original file line number Diff line number Diff line change @@ -69,6 +69,9 @@ include(GNUInstallDirs)
6969
7070if (NOT ADA_COVERAGE AND NOT EMSCRIPTEN)
7171 add_subdirectory (singleheader)
72+ endif ()
73+
74+ if (ADA_TOOLS)
7275 add_subdirectory (tools)
7376endif ()
7477
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ if(ADA_SANITIZE_UNDEFINED)
1212 message (STATUS "Undefined sanitizer enabled." )
1313endif ()
1414option (ADA_COVERAGE "Compute coverage" OFF )
15+ option (ADA_TOOLS "Build cli tools (adaparse)" ON )
1516
1617if (ADA_COVERAGE)
1718 message (STATUS "You want to compute coverage. We assume that you have installed gcovr." )
You can’t perform that action at this time.
0 commit comments