make it so GEODE_DONT_BUILD_TEST_MODS still build member test

This commit is contained in:
matcool 2023-12-22 01:43:52 -03:00
parent bf5d4d5324
commit 9aaf0e23bf
2 changed files with 6 additions and 6 deletions

View file

@ -275,10 +275,7 @@ elseif (WIN32)
endif()
endif()
# Build test mods if needed
if(NOT GEODE_DONT_BUILD_TEST_MODS)
add_subdirectory(test)
endif()
add_subdirectory(test)
# Build index hashing algorithm test program
add_subdirectory(hash)

View file

@ -1,3 +1,6 @@
add_subdirectory(dependency)
add_subdirectory(main)
if(NOT GEODE_DONT_BUILD_TEST_MODS)
add_subdirectory(dependency)
add_subdirectory(main)
endif()
add_subdirectory(members)