Move spell stuff in its own directory.

This commit is contained in:
joris 2012-08-10 12:23:53 +02:00
parent 843525c321
commit d6da2d2c21
3 changed files with 7 additions and 2 deletions

View file

@ -226,6 +226,12 @@ set(pathfinder_SRCS
)
source_group(pathfinder FILES ${pathfinder_SRCS})
set(spell_SRCS
src/spell/script_spell.cpp
src/spell/spells.cpp
)
source_group(spell FILES ${spell_SRCS})
set(sound_SRCS
src/sound/mikmod.cpp
src/sound/music.cpp
@ -248,9 +254,7 @@ set(stratagusmain_SRCS
src/stratagus/player.cpp
src/stratagus/script.cpp
src/stratagus/script_player.cpp
src/stratagus/script_spell.cpp
src/stratagus/selection.cpp
src/stratagus/spells.cpp
src/stratagus/stratagus.cpp
src/stratagus/title.cpp
src/stratagus/translate.cpp
@ -345,6 +349,7 @@ set(stratagus_SRCS
${network_SRCS}
${particle_SRCS}
${pathfinder_SRCS}
${spell_SRCS}
${sound_SRCS}
${stratagusmain_SRCS}
${ui_SRCS}