Skip to content

Commit

Permalink
Try to disable testing for emscripten
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-cukic committed Dec 4, 2023
1 parent 080c1bb commit fdea638
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ set(WASM_BUILD_DIR ${BUILD_DIR}/ui-wasm)

option(OPENDIGITIZER_ENABLE_TESTING "Enable unit tests" ON)
if(OPENDIGITIZER_ENABLE_TESTING)
enable_testing()
if (not EMSCRIPTEN)
enable_testing()
endif()
endif()

add_subdirectory(src/service)

0 comments on commit fdea638

Please sign in to comment.