renamed 'generateMock' routines to 'prep' routines to accurately reflect what they do

This commit is contained in:
Paul M. Sutter 2024-05-22 15:46:04 -04:00
parent b1962100a8
commit 50ad2d6d73
21 changed files with 69 additions and 89 deletions

View file

@ -0,0 +1,11 @@
SET(SIMU_LOADERS_SRCS
simulation_loader.cpp ramses_loader.cpp
gadget_loader.cpp flash_loader.cpp)
IF (SDF_SUPPORT)
add_definitions(-DSDF_SUPPORT)
SET(SIMU_LOADERS_SRCS ${SIMU_LOADERS_SRCS} sdf_loader.cpp multidark_loader.cpp)
ENDIF (SDF_SUPPORT)
add_library(simu_loaders ${SIMU_LOADERS_SRCS})