You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.6 KiB
85 lines
2.6 KiB
if(NOT DEFINED DEVILUTIONX_TEST_FIXTURES_OUTPUT_DIRECTORY) |
|
set(DEVILUTIONX_TEST_FIXTURES_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/fixtures") |
|
endif() |
|
|
|
set(devilutionx_fixtures |
|
diablo/1-2588.dun |
|
diablo/1-743271966.dun |
|
diablo/2-1383137027.dun |
|
diablo/3-844660068.dun |
|
diablo/4-609325643.dun |
|
diablo/5-68685319.dun |
|
diablo/5-1677631846.dun |
|
diablo/6-1824554527.dun |
|
diablo/6-2034738122.dun |
|
diablo/6-2033265779.dun |
|
diablo/7-680552750.dun |
|
diablo/7-1607627156.dun |
|
diablo/8-1999936419.dun |
|
diablo/9-262005438.dun |
|
diablo/10-879635115.dun |
|
diablo/10-1630062353.dun |
|
diablo/11-384626536.dun |
|
diablo/12-2104541047.dun |
|
diablo/13-428074402.dun |
|
diablo/13-594689775.dun |
|
diablo/14-717625719.dun |
|
diablo/15-1256511996.dun |
|
diablo/15-1583642716.dun |
|
diablo/15-1583642716-changed.dun |
|
diablo/16-741281013.dun |
|
hellfire/1-401921334.dun |
|
hellfire/1-536340718.dun |
|
hellfire/2-128964898.dun |
|
hellfire/2-1180526547.dun |
|
hellfire/3-1512491184.dun |
|
hellfire/3-1799396623.dun |
|
hellfire/4-1190318991.dun |
|
hellfire/4-1924296259.dun |
|
hellfire/17-19770182.dun |
|
hellfire/18-1522546307.dun |
|
hellfire/19-125121312.dun |
|
hellfire/20-1511478689.dun |
|
hellfire/21-2122696790.dun |
|
hellfire/22-1191662129.dun |
|
hellfire/23-97055268.dun |
|
hellfire/24-1324803725.dun |
|
Levels/L1Data/Banner1.DUN |
|
Levels/L1Data/Banner2.DUN |
|
Levels/L1Data/rnd6.DUN |
|
Levels/L1Data/SKngDO.DUN |
|
Levels/L2Data/Blind1.DUN |
|
Levels/L2Data/Blood1.DUN |
|
Levels/L2Data/Blood2.DUN |
|
Levels/L2Data/Bonestr1.DUN |
|
Levels/L2Data/Bonestr2.DUN |
|
Levels/L3Data/Anvil.DUN |
|
Levels/L4Data/diab1.DUN |
|
Levels/L4Data/diab2a.DUN |
|
Levels/L4Data/diab2b.DUN |
|
Levels/L4Data/diab3a.DUN |
|
Levels/L4Data/diab3b.DUN |
|
Levels/L4Data/diab4a.DUN |
|
Levels/L4Data/diab4b.DUN |
|
Levels/L4Data/Vile1.DUN |
|
Levels/L4Data/Warlord.DUN |
|
Levels/L4Data/Warlord2.DUN |
|
timedemo/WarriorLevel1to2/demo_0.dmo |
|
timedemo/WarriorLevel1to2/demo_0_reference_spawn_0.sv |
|
timedemo/WarriorLevel1to2/spawn_0.sv |
|
) |
|
|
|
foreach(fixture ${devilutionx_fixtures}) |
|
set(src "${CMAKE_CURRENT_SOURCE_DIR}/fixtures/${fixture}") |
|
set(dst "${DEVILUTIONX_TEST_FIXTURES_OUTPUT_DIRECTORY}/${fixture}") |
|
list(APPEND DEVILUTIONX_OUTPUT_TEST_FIXTURES_FILES "${dst}") |
|
add_custom_command( |
|
COMMENT "Copying ${fixture}" |
|
OUTPUT "${dst}" |
|
DEPENDS "${src}" |
|
COMMAND ${CMAKE_COMMAND} -E copy "${src}" "${dst}" |
|
VERBATIM) |
|
endforeach() |
|
|
|
add_custom_target(devilutionx_copied_fixtures DEPENDS ${DEVILUTIONX_OUTPUT_TEST_FIXTURES_FILES}) |
|
add_dependencies(test_main devilutionx_copied_fixtures)
|
|
|