Skip to content

Commit

Permalink
Meson: Add BGQ and Mana Tombs, Fix PCH
Browse files Browse the repository at this point in the history
  • Loading branch information
insunaa committed Nov 17, 2024
1 parent 34db6d4 commit f3454c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/game/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ game_sources = [
'BattleGround/BattleGroundNA.cpp',
'BattleGround/BattleGroundAA.cpp',
'BattleGround/BattleGroundBE.cpp',
'BattleGround/BattleGroundQueue.cpp',
'Entities/SkillHandler.cpp',
'Entities/MiscHandler.cpp',
'Entities/QueryHandler.cpp',
Expand Down Expand Up @@ -540,6 +541,7 @@ scriptdev_sources = [
'AI/ScriptDevAI/scripts/outland/auchindoun/shadow_labyrinth/boss_blackheart_the_inciter.cpp',
'AI/ScriptDevAI/scripts/outland/auchindoun/mana_tombs/boss_yor.cpp',
'AI/ScriptDevAI/scripts/outland/auchindoun/mana_tombs/mana_tombsScripts.cpp',
'AI/ScriptDevAI/scripts/outland/auchindoun/mana_tombs/mana_tombs.cpp',
'AI/ScriptDevAI/scripts/outland/auchindoun/mana_tombs/boss_nexusprince_shaffar.cpp',
'AI/ScriptDevAI/scripts/outland/auchindoun/mana_tombs/boss_pandemonius.cpp',
'AI/ScriptDevAI/scripts/outland/auchindoun/sethekk_halls/boss_anzu.cpp',
Expand Down Expand Up @@ -633,7 +635,7 @@ endif
if not get_option('PCH')
pch_files = []
else
pch_files = ['../game/pchdef.h', '../game/pchdef.cpp']
pch_files = ['../game/pchdef.h']
endif

game_args = ['-DDT_POLYREF64', '-D__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES=0']
Expand Down
2 changes: 1 addition & 1 deletion src/shared/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ actual_rev = vcs_tag(
if not get_option('PCH')
pch_files = []
else
pch_files = ['../shared/pchdef.h', '../shared/pchdef.cpp']
pch_files = ['../shared/pchdef.h']
endif

if get_option('BUILD_GAME_SERVER') or get_option('BUILD_LOGIN_SERVER') or get_option('BUILD_EXTRACTORS')
Expand Down

0 comments on commit f3454c3

Please sign in to comment.