Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,13 @@ endif()
target_compile_options(manifold_test PRIVATE ${MANIFOLD_FLAGS})
exportbin(manifold_test)

add_test(NAME manifold_test COMMAND manifold_test)
if(WIN32)
# If you want to fix the DLL availability at build time, be my guest.
add_test(NAME manifold_test COMMAND manifold_test)
else()
# *nix users get the tests individually broken out!
gtest_discover_tests(manifold_test)
endif()

if(MANIFOLD_FUZZ)
fuzztest_setup_fuzzing_flags()
Expand Down