mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-23 03:15:58 -04:00
make it so GEODE_DONT_BUILD_TEST_MODS still build member test
This commit is contained in:
parent
bf5d4d5324
commit
9aaf0e23bf
2 changed files with 6 additions and 6 deletions
loader
|
@ -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)
|
||||
|
|
|
@ -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)
|
Loading…
Reference in a new issue