Another big repo refactoring, should be latest
I've restored old paths for scripts and flattened the src structure
This commit is contained in:
parent
3972a1da63
commit
c1a76e07ff
@ -34,7 +34,7 @@ include(CheckIncludeFiles)
|
||||
# some utils for cmake
|
||||
include(modules/uwd/cmake-utils/utils.cmake)
|
||||
|
||||
include(ScriptsMacro)
|
||||
include(src/cmake/ac_macros.cmake)
|
||||
|
||||
# set default buildoptions and print them
|
||||
include(conf/config.cmake.dist)
|
||||
@ -80,10 +80,10 @@ if(NOT WITHOUT_GIT)
|
||||
endif()
|
||||
|
||||
# Find revision ID and hash of the sourcetree
|
||||
include(modules/acore/cmake/genrev.cmake)
|
||||
include(src/cmake/genrev.cmake)
|
||||
|
||||
# print out the results before continuing
|
||||
include(modules/acore/cmake/showoptions.cmake)
|
||||
include(src/cmake/showoptions.cmake)
|
||||
|
||||
# add modules and dependencies
|
||||
CU_SUBDIRLIST(sub_DIRS "${CMAKE_SOURCE_DIR}/modules" FALSE FALSE)
|
||||
|
||||
@ -1,23 +0,0 @@
|
||||
# from cmake wiki
|
||||
IF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
|
||||
MESSAGE(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"")
|
||||
ENDIF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
|
||||
|
||||
FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
|
||||
STRING(REGEX REPLACE "\n" ";" files "${files}")
|
||||
FOREACH(file ${files})
|
||||
MESSAGE(STATUS "Uninstalling \"${file}\"")
|
||||
IF(EXISTS "${file}")
|
||||
EXEC_PROGRAM(
|
||||
"@CMAKE_COMMAND@" ARGS "-E remove \"${file}\""
|
||||
OUTPUT_VARIABLE rm_out
|
||||
RETURN_VALUE rm_retval
|
||||
)
|
||||
IF("${rm_retval}" STREQUAL 0)
|
||||
ELSE("${rm_retval}" STREQUAL 0)
|
||||
MESSAGE(FATAL_ERROR "Problem when removing \"${file}\"")
|
||||
ENDIF("${rm_retval}" STREQUAL 0)
|
||||
ELSE(EXISTS "${file}")
|
||||
MESSAGE(STATUS "File \"${file}\" does not exist.")
|
||||
ENDIF(EXISTS "${file}")
|
||||
ENDFOREACH(file)
|
||||
@ -1,8 +0,0 @@
|
||||
#ifndef HAVE_CONFIG_H
|
||||
#define HAVE_CONFIG_H
|
||||
|
||||
#cmakedefine HAVE_ACE_STACK_TRACE_H
|
||||
|
||||
#cmakedefine USE_MULTI_THREAD_MAP
|
||||
|
||||
#endif /* HAVE_CONFIG_H */
|
||||
@ -1,12 +1,10 @@
|
||||
CU_RUN_HOOK("BEFORE_ACORE_LOAD")
|
||||
|
||||
add_subdirectory(deps)
|
||||
add_subdirectory(genrev)
|
||||
|
||||
if( SERVERS )
|
||||
add_subdirectory(framework)
|
||||
add_subdirectory(world-engine/collision)
|
||||
add_subdirectory(scripts-wotlk)
|
||||
else()
|
||||
if( TOOLS )
|
||||
add_subdirectory(extractors)
|
||||
|
||||
@ -1,31 +0,0 @@
|
||||
/* Copyright (C) 2009 Sun Microsystems, Inc
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; version 2 of the License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
||||
|
||||
/* Check stack direction (0-down, 1-up) */
|
||||
int f(int *a)
|
||||
{
|
||||
int b;
|
||||
return(&b > a)?1:0;
|
||||
}
|
||||
/*
|
||||
Prevent compiler optimizations by calling function
|
||||
through pointer.
|
||||
*/
|
||||
volatile int (*ptr_f)(int *) = f;
|
||||
int main()
|
||||
{
|
||||
int a;
|
||||
return ptr_f(&a);
|
||||
}
|
||||
@ -1,18 +0,0 @@
|
||||
CU_SET_PATH("CMAKE_AC_MODULE_DIR" "${CMAKE_CURRENT_LIST_DIR}")
|
||||
|
||||
if(SCRIPTS)
|
||||
include(World/CMakeLists.txt)
|
||||
include(OutdoorPvP/CMakeLists.txt)
|
||||
include(EasternKingdoms/CMakeLists.txt)
|
||||
include(Kalimdor/CMakeLists.txt)
|
||||
include(Outland/CMakeLists.txt)
|
||||
include(Northrend/CMakeLists.txt)
|
||||
include(Events/CMakeLists.txt)
|
||||
include(Pet/CMakeLists.txt)
|
||||
|
||||
if(EXISTS "Custom/CMakeLists.txt")
|
||||
include(Custom/CMakeLists.txt)
|
||||
endif()
|
||||
|
||||
AC_ADD_SCRIPT("${scripts_STAT_SRCS}")
|
||||
endif()
|
||||
@ -1,169 +0,0 @@
|
||||
# Copyright (C)
|
||||
#
|
||||
# This file is free software; as a special exception the author gives
|
||||
# unlimited permission to copy and/or distribute it, with or without
|
||||
# modifications, as long as this notice is preserved.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
set(scripts_STAT_SRCS
|
||||
${scripts_STAT_SRCS}
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_ghostlands.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_eversong_woods.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/AlteracValley/boss_galvangar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/AlteracValley/boss_balinda.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/AlteracValley/boss_drekthar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/AlteracValley/boss_vanndar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/AlteracValley/alterac_valley.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_high_interrogator_gerstahn.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_gorosh_the_dervish.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_anubshiah.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_tomb_of_seven.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_general_angerforge.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_grizzle.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_ambassador_flamelash.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/instance_blackrock_depths.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_moira_bronzebeard.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_emperor_dagran_thaurissan.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_chromaggus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_razorgore.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_firemaw.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_broodlord_lashlayer.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_ebonroc.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/instance_blackwing_lair.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_vaelastrasz.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_nefarian.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_flamegor.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/blackwing_lair.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_pyroguard_emberseer.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_warmaster_voone.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mother_smolderweb.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_quartermaster_zigris.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_halycon.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_overlord_wyrmthalak.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_shadow_hunter_voshgajin.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gyth.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_rend_blackhand.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_highlord_omokk.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_the_beast.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gizrul_the_slavener.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_urok_doomhowl.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_lord_valthalak.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/blackrock_spire.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/instance_blackrock_spire.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_gehennas.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_lucifron.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_golemagg.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_majordomo_executus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_baron_geddon.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_ragnaros.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_garr.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/molten_core.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/instance_molten_core.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_sulfuron_harbinger.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_magmadar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_shazzrah.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Scholomance/scholomance.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Scholomance/instance_scholomance.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Scholomance/boss_kirtonos_the_herald.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_isle_of_queldanas.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/boss_hakkar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/boss_mandokir.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/boss_marli.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/boss_hazzarah.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/boss_jeklik.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/boss_grilek.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/zulgurub.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/boss_renataki.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/boss_arlokk.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/boss_gahzranka.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/boss_venoxis.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/instance_zulgurub.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/boss_jindo.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/boss_wushoolay.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulGurub/boss_thekal.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_wetlands.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_arathi_highlands.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Gnomeregan/instance_gnomeregan.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_redridge_mountains.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_ironforge.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ScarletEnclave/chapter2.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ScarletEnclave/chapter5.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ScarletEnclave/chapter1.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ScarletEnclave/zone_the_scarlet_enclave.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_eastern_plaguelands.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Stratholme/instance_stratholme.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Stratholme/stratholme.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_tirisfal_glades.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/SunkenTemple/sunken_temple.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/SunkenTemple/instance_sunken_temple.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/MagistersTerrace/boss_felblood_kaelthas.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/MagistersTerrace/magisters_terrace.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/MagistersTerrace/boss_selin_fireheart.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/MagistersTerrace/boss_vexallus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Uldaman/uldaman.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Uldaman/instance_uldaman.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_swamp_of_sorrows.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/SunwellPlateau/boss_eredar_twins.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/SunwellPlateau/boss_kiljaeden.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/SunwellPlateau/sunwell_plateau.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/SunwellPlateau/boss_muru.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/SunwellPlateau/boss_kalecgos.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/SunwellPlateau/boss_brutallus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/SunwellPlateau/boss_felmyst.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_stranglethorn_vale.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Deadmines/boss_mr_smite.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Deadmines/instance_deadmines.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Deadmines/deadmines.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_duskwood.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ScarletMonastery/instance_scarlet_monastery.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_undercity.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_loch_modan.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ShadowfangKeep/instance_shadowfang_keep.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ShadowfangKeep/shadowfang_keep.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_burning_steppes.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_blasted_lands.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_stormwind_city.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulAman/boss_halazzi.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulAman/boss_hexlord.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulAman/boss_zuljin.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulAman/boss_akilzon.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulAman/instance_zulaman.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulAman/boss_janalai.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulAman/boss_nalorakk.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulAman/zulaman.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/ZulAman/zulaman.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_hinterlands.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_western_plaguelands.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_alterac_mountains.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_westfall.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/zone_silverpine_forest.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/instance_karazhan.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/boss_nightbane.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/karazhan.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/boss_curator.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/boss_netherspite.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/boss_maiden_of_virtue.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/boss_midnight.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/bosses_opera.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/boss_moroes.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/boss_terestian_illhoof.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/boss_servant_quarters.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/Karazhan/karazhan.h
|
||||
${CMAKE_AC_MODULE_DIR}/EasternKingdoms/TheStockade/instance_the_stockade.cpp
|
||||
)
|
||||
|
||||
AC_ADD_SCRIPT_LOADER("EasternKingdoms" "${CMAKE_AC_MODULE_DIR}/ScriptWotlkLoader.h")
|
||||
|
||||
message(" -> Prepared: Eastern Kingdoms")
|
||||
@ -1,14 +0,0 @@
|
||||
set(scripts_STAT_SRCS
|
||||
${scripts_STAT_SRCS}
|
||||
${CMAKE_AC_MODULE_DIR}/Events/brewfest.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Events/childrens_week.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Events/hallows_end.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Events/pilgrims_bounty.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Events/winter_veil.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Events/love_in_air.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Events/midsummer.cpp
|
||||
)
|
||||
|
||||
AC_ADD_SCRIPT_LOADER("Event" "${CMAKE_AC_MODULE_DIR}/ScriptWotlkLoader.h")
|
||||
|
||||
message(" -> Prepared: Events")
|
||||
@ -1,110 +0,0 @@
|
||||
# Copyright (C)
|
||||
#
|
||||
# This file is free software; as a special exception the author gives
|
||||
# unlimited permission to copy and/or distribute it, with or without
|
||||
# modifications, as long as this notice is preserved.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
set(scripts_STAT_SRCS
|
||||
${scripts_STAT_SRCS}
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_stonetalon_mountains.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_silithus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_moonglade.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/RazorfenDowns/razorfen_downs.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/RazorfenDowns/instance_razorfen_downs.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/RazorfenDowns/razorfen_downs.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/ZulFarrak/instance_zulfarrak.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/ZulFarrak/zulfarrak.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_epoch_hunter.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/old_hillsbrad.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_lieutenant_drake.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/old_hillsbrad.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/instance_old_hillsbrad.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_captain_skarloc.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_archimonde.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal_trash.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_kazrogal.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal_trash.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_rage_winterchill.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_azgalor.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_anetheron.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_infinite.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_salramm.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_meathook.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_mal_ganis.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_epoch.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/CullingOfStratholme/culling_of_stratholme.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/CullingOfStratholme/instance_culling_of_stratholme.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/CullingOfStratholme/culling_of_stratholme.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/TheBlackMorass/the_black_morass.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/TheBlackMorass/instance_the_black_morass.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/TheBlackMorass/boss_chrono_lord_deja.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/TheBlackMorass/the_black_morass.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/TheBlackMorass/boss_aeonus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/CavernsOfTime/TheBlackMorass/boss_temporus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/BlackfathomDeeps/instance_blackfathom_deeps.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/BlackfathomDeeps/blackfathom_deeps.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_azuremyst_isle.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_orgrimmar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_desolace.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_feralas.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/Maraudon/instance_maraudon.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/Maraudon/maraudon.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/TempleOfAhnQiraj/boss_fankriss.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/TempleOfAhnQiraj/boss_huhuran.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/TempleOfAhnQiraj/instance_temple_of_ahnqiraj.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/TempleOfAhnQiraj/mob_anubisath_sentinel.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/TempleOfAhnQiraj/boss_viscidus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/TempleOfAhnQiraj/boss_sartura.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/TempleOfAhnQiraj/boss_cthun.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/TempleOfAhnQiraj/temple_of_ahnqiraj.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/TempleOfAhnQiraj/boss_ouro.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/TempleOfAhnQiraj/boss_bug_trio.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_darkshore.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/RuinsOfAhnQiraj/boss_buru.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/RuinsOfAhnQiraj/instance_ruins_of_ahnqiraj.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/RuinsOfAhnQiraj/boss_rajaxx.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/RuinsOfAhnQiraj/boss_ossirian.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/RuinsOfAhnQiraj/boss_ayamiss.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/RuinsOfAhnQiraj/boss_moam.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/RuinsOfAhnQiraj/ruins_of_ahnqiraj.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/RuinsOfAhnQiraj/boss_kurinnaxx.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_mulgore.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_bloodmyst_isle.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_thunder_bluff.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_azshara.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/RazorfenKraul/instance_razorfen_kraul.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_the_barrens.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_ungoro_crater.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/WailingCaverns/wailing_caverns.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/WailingCaverns/instance_wailing_caverns.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_durotar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_felwood.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/boss_azuregos.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_tanaris.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_dustwallow_marsh.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_winterspring.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_thousand_needles.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_ashenvale.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/zone_teldrassil.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/OnyxiasLair/boss_onyxia.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/OnyxiasLair/onyxias_lair.h
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/OnyxiasLair/instance_onyxias_lair.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/RagefireChasm/instance_ragefire_chasm.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/DireMaul/instance_dire_maul.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Kalimdor/DireMaul/dire_maul.h
|
||||
)
|
||||
|
||||
AC_ADD_SCRIPT_LOADER("Kalimdor" "${CMAKE_AC_MODULE_DIR}/ScriptWotlkLoader.h")
|
||||
|
||||
message(" -> Prepared: Kalimdor")
|
||||
@ -1,201 +0,0 @@
|
||||
# Copyright (C)
|
||||
#
|
||||
# This file is free software; as a special exception the author gives
|
||||
# unlimited permission to copy and/or distribute it, with or without
|
||||
# modifications, as long as this notice is preserved.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
set(scripts_STAT_SRCS
|
||||
${scripts_STAT_SRCS}
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/isle_of_conquest.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/zone_storm_peaks.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/HallsOfLightning/instance_halls_of_lightning.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/HallsOfLightning/boss_bjarngrim.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/HallsOfLightning/halls_of_lightning.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/HallsOfLightning/boss_ionar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/HallsOfLightning/boss_volkhan.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/HallsOfLightning/boss_loken.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_general_vezax.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/ulduar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_thorim.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_ignis.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/instance_ulduar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_auriaya.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_yoggsaron.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_hodir.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_assembly_of_iron.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_xt002.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_mimiron.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/ulduar.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_freya.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_razorscale.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/Ulduar/boss_kologarn.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/HallsOfStone/boss_krystallus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/HallsOfStone/halls_of_stone.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/HallsOfStone/instance_halls_of_stone.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/HallsOfStone/boss_maiden_of_grief.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/HallsOfStone/boss_sjonnir.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/HallsOfStone/halls_of_stone.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Ulduar/HallsOfStone/brann_bronzebeard.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/ChamberOfAspects/ObsidianSanctum/instance_obsidian_sanctum.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/ChamberOfAspects/ObsidianSanctum/obsidian_sanctum.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/ChamberOfAspects/ObsidianSanctum/boss_sartharion.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/ChamberOfAspects/RubySanctum/instance_ruby_sanctum.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/ChamberOfAspects/RubySanctum/ruby_sanctum.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/ChamberOfAspects/RubySanctum/boss_baltharus_the_warborn.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/ChamberOfAspects/RubySanctum/boss_saviana_ragefire.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/ChamberOfAspects/RubySanctum/boss_general_zarithrian.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/HallsOfReflection/boss_falric.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/HallsOfReflection/instance_halls_of_reflection.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/HallsOfReflection/boss_marwyn.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/PitOfSaron/boss_forgemaster_garfrost.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/PitOfSaron/boss_krickandick.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/PitOfSaron/boss_scourgelord_tyrannus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/PitOfSaron/instance_pit_of_saron.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/ForgeOfSouls/boss_bronjahm.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/ForgeOfSouls/instance_forge_of_souls.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/ForgeOfSouls/boss_devourer_of_souls.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/EyeOfEternity/boss_malygos.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/EyeOfEternity/instance_eye_of_eternity.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/EyeOfEternity/eye_of_eternity.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Oculus/boss_eregos.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Oculus/boss_drakos.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Oculus/oculus.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Oculus/boss_varos.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Oculus/boss_urom.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Oculus/oculus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Oculus/instance_oculus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Nexus/boss_commander_stoutbeard_kolurg.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Nexus/boss_ormorok.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Nexus/boss_magus_telestra.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Nexus/instance_nexus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Nexus/boss_keristrasza.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Nexus/boss_anomalus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Nexus/Nexus/nexus.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_anubarak_trial.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_faction_champions.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheCrusader/trial_of_the_crusader.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheCrusader/trial_of_the_crusader.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheCrusader/instance_trial_of_the_crusader.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheChampion/trial_of_the_champion.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheChampion/trial_of_the_champion.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_grand_champions.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_black_knight.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheChampion/instance_trial_of_the_champion.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_argent_challenge.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_loatheb.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_anubrekhan.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_maexxna.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_patchwerk.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_gothik.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_faerlina.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_gluth.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_four_horsemen.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/naxxramas.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_kelthuzad.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_heigan.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_thaddius.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_razuvious.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_sapphiron.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/instance_naxxramas.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_grobbulus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Naxxramas/boss_noth.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/zone_crystalsong_forest.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VaultOfArchavon/boss_archavon.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VaultOfArchavon/boss_koralon.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VaultOfArchavon/vault_of_archavon.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VaultOfArchavon/instance_vault_of_archavon.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VaultOfArchavon/boss_emalon.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VaultOfArchavon/boss_toravon.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/zone_sholazar_basin.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/UtgardeKeep/UtgardePinnacle/boss_palehoof.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/UtgardeKeep/UtgardePinnacle/boss_svala.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/UtgardeKeep/UtgardePinnacle/instance_utgarde_pinnacle.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/UtgardeKeep/UtgardePinnacle/boss_ymiron.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/UtgardeKeep/UtgardePinnacle/boss_skadi.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/UtgardeKeep/UtgardePinnacle/utgarde_pinnacle.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/UtgardeKeep/UtgardeKeep/boss_ingvar_the_plunderer.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/UtgardeKeep/UtgardeKeep/boss_skarvald_dalronn.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/UtgardeKeep/UtgardeKeep/utgarde_keep.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/UtgardeKeep/UtgardeKeep/instance_utgarde_keep.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/UtgardeKeep/UtgardeKeep/boss_keleseth.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/UtgardeKeep/UtgardeKeep/utgarde_keep.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/zone_dragonblight.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/zone_grizzly_hills.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/AzjolNerub/AzjolNerub/azjol_nerub.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/AzjolNerub/AzjolNerub/instance_azjol_nerub.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/AzjolNerub/AzjolNerub/boss_hadronox.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/AzjolNerub/AzjolNerub/boss_anubarak.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/AzjolNerub/ahnkahet/boss_herald_volazj.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/AzjolNerub/ahnkahet/boss_prince_taldaram.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/AzjolNerub/ahnkahet/instance_ahnkahet.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/AzjolNerub/ahnkahet/boss_jedoga_shadowseeker.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/AzjolNerub/ahnkahet/boss_elder_nadox.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/AzjolNerub/ahnkahet/boss_amanitar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/AzjolNerub/ahnkahet/ahnkahet.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VioletHold/boss_zuramat.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VioletHold/instance_violet_hold.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VioletHold/boss_lavanthor.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VioletHold/boss_cyanigosa.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VioletHold/violet_hold.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VioletHold/boss_ichoron.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VioletHold/boss_moragg.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VioletHold/boss_xevozz.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VioletHold/boss_erekem.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/VioletHold/violet_hold.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/instance_icecrown_citadel.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/icecrown_citadel.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/icecrown_citadel.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/icecrown_citadel_teleport.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/boss_lord_marrowgar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/boss_lady_deathwhisper.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/boss_icecrown_gunship_battle.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/boss_deathbringer_saurfang.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/boss_festergut.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/boss_rotface.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/boss_professor_putricide.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/boss_blood_prince_council.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/boss_sindragosa.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/IcecrownCitadel/boss_the_lich_king.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/zone_zuldrak.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/zone_wintergrasp.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/zone_icecrown.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Gundrak/boss_slad_ran.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Gundrak/instance_gundrak.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Gundrak/boss_drakkari_colossus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Gundrak/gundrak.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Gundrak/boss_gal_darah.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Gundrak/boss_moorabi.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/Gundrak/boss_eck.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/zone_borean_tundra.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/zone_howling_fjord.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/zone_dalaran.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/DraktharonKeep/boss_trollgore.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/DraktharonKeep/instance_drak_tharon_keep.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/DraktharonKeep/boss_novos.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/DraktharonKeep/drak_tharon_keep.h
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/DraktharonKeep/boss_tharon_ja.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Northrend/DraktharonKeep/boss_dred.cpp
|
||||
)
|
||||
|
||||
AC_ADD_SCRIPT_LOADER("Northrend" "${CMAKE_AC_MODULE_DIR}/ScriptWotlkLoader.h")
|
||||
|
||||
message(" -> Prepared: Northrend")
|
||||
@ -1,31 +0,0 @@
|
||||
# Copyright (C)
|
||||
#
|
||||
# This file is free software; as a special exception the author gives
|
||||
# unlimited permission to copy and/or distribute it, with or without
|
||||
# modifications, as long as this notice is preserved.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
set(scripts_STAT_SRCS
|
||||
${scripts_STAT_SRCS}
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPTF.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPSI.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPSI.h
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPZM.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPNA.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPHP.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPTF.h
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPEP.h
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPEP.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPHP.h
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPZM.h
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPNA.h
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPGH.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/OutdoorPvP/OutdoorPvPGH.h
|
||||
)
|
||||
|
||||
AC_ADD_SCRIPT_LOADER("OutdoorPvP" "${CMAKE_AC_MODULE_DIR}/ScriptWotlkLoader.h")
|
||||
|
||||
message(" -> Prepared: Outdoor PVP Zones")
|
||||
@ -1,114 +0,0 @@
|
||||
# Copyright (C)
|
||||
#
|
||||
# This file is free software; as a special exception the author gives
|
||||
# unlimited permission to copy and/or distribute it, with or without
|
||||
# modifications, as long as this notice is preserved.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
set(scripts_STAT_SRCS
|
||||
${scripts_STAT_SRCS}
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/zone_nagrand.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/MagtheridonsLair/magtheridons_lair.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/MagtheridonsLair/instance_magtheridons_lair.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/HellfireRamparts/instance_hellfire_ramparts.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/HellfireRamparts/boss_omor_the_unscarred.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/HellfireRamparts/boss_watchkeeper_gargolmar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/HellfireRamparts/hellfire_ramparts.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/BloodFurnace/boss_the_maker.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/BloodFurnace/boss_kelidan_the_breaker.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/BloodFurnace/blood_furnace.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/BloodFurnace/instance_blood_furnace.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/ShatteredHalls/shattered_halls.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/ShatteredHalls/boss_warchief_kargath_bladefist.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/ShatteredHalls/boss_nethekurse.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/ShatteredHalls/instance_shattered_halls.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/HellfireCitadel/ShatteredHalls/boss_warbringer_omrogg.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SteamVault/boss_mekgineer_steamrigger.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SteamVault/instance_steam_vault.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SteamVault/boss_hydromancer_thespia.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SteamVault/boss_warlord_kalithresh.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SteamVault/steam_vault.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SerpentShrine/boss_hydross_the_unstable.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SerpentShrine/boss_fathomlord_karathress.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SerpentShrine/instance_serpent_shrine.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SerpentShrine/serpent_shrine.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SerpentShrine/boss_lady_vashj.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SerpentShrine/boss_lurker_below.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/underbog/boss_the_black_stalker.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/CoilfangReservoir/SlavePens/boss_ahune.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/zone_shattrath_city.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/Mechanar/boss_mechano_lord_capacitus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/Mechanar/boss_pathaleon_the_calculator.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/Mechanar/boss_nethermancer_sepethrea.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/Mechanar/mechanar.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/Mechanar/boss_gatewatcher_gyrokill.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/Mechanar/instance_mechanar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/Mechanar/boss_gatewatcher_ironhand.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/Eye/the_eye.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/Eye/instance_the_eye.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/Eye/boss_void_reaver.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/Eye/boss_astromancer.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/Eye/boss_alar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/Eye/boss_kaelthas.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/botanica/the_botanica.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/botanica/instance_the_botanica.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/botanica/boss_commander_sarannis.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/botanica/boss_thorngrin_the_tender.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/botanica/boss_high_botanist_freywinn.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/botanica/boss_warp_splinter.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/botanica/boss_laj.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/arcatraz/boss_zereketh_the_unbound.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/arcatraz/boss_dalliah_the_doomsayer.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/arcatraz/boss_wrath_scryer_soccothrates.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/arcatraz/boss_harbinger_skyriss.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/arcatraz/instance_arcatraz.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/arcatraz/arcatraz.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/TempestKeep/arcatraz/arcatraz.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/Auchindoun/AuchenaiCrypts/boss_shirrak_the_dead_watcher.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/Auchindoun/AuchenaiCrypts/boss_exarch_maladaar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/Auchindoun/ManaTombs/boss_nexusprince_shaffar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/Auchindoun/SethekkHalls/boss_talon_king_ikiss.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/Auchindoun/SethekkHalls/instance_sethekk_halls.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/Auchindoun/SethekkHalls/sethekk_halls.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/Auchindoun/ShadowLabyrinth/boss_ambassador_hellmaw.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/Auchindoun/ShadowLabyrinth/boss_grandmaster_vorpil.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/Auchindoun/ShadowLabyrinth/boss_murmur.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/Auchindoun/ShadowLabyrinth/instance_shadow_labyrinth.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/Auchindoun/ShadowLabyrinth/shadow_labyrinth.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/boss_doomwalker.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/zone_terokkar_forest.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/zone_hellfire_peninsula.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/boss_doomlord_kazzak.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/BlackTemple/boss_teron_gorefiend.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/BlackTemple/black_temple.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/BlackTemple/illidari_council.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/BlackTemple/boss_shade_of_akama.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/BlackTemple/boss_supremus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/BlackTemple/boss_mother_shahraz.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/BlackTemple/instance_black_temple.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/BlackTemple/boss_reliquary_of_souls.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/BlackTemple/boss_warlord_najentus.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/BlackTemple/boss_bloodboil.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/BlackTemple/boss_illidan.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/zone_shadowmoon_valley.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/zone_blades_edge_mountains.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/GruulsLair/boss_high_king_maulgar.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/GruulsLair/boss_gruul.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/GruulsLair/gruuls_lair.h
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/GruulsLair/instance_gruuls_lair.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/zone_netherstorm.cpp
|
||||
${CMAKE_AC_MODULE_DIR}/Outland/zone_zangarmarsh.cpp
|
||||
)
|
||||
|
||||
AC_ADD_SCRIPT_LOADER("Outland" "${CMAKE_AC_MODULE_DIR}/ScriptWotlkLoader.h")
|
||||
|
||||
message(" -> Prepared: Outland")
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,30 +0,0 @@
|
||||
/*
|
||||
* Copyright (C)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation; either version 2 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef SC_SCRIPT_WOTLK_LOADER_H
|
||||
#define SC_SCRIPT_WOTLK_LOADER_H
|
||||
|
||||
void AddWorldScripts();
|
||||
void AddEventScripts();
|
||||
void AddEasternKingdomsScripts();
|
||||
void AddKalimdorScripts();
|
||||
void AddOutlandScripts();
|
||||
void AddNorthrendScripts();
|
||||
void AddPetScripts();
|
||||
void AddOutdoorPvPScripts();
|
||||
|
||||
#endif
|
||||
@ -16,6 +16,8 @@ if(CMAKE_COMPILER_IS_GNUCXX AND NOT MINGW)
|
||||
add_definitions(-fno-delete-null-pointer-checks)
|
||||
endif()
|
||||
|
||||
add_subdirectory(genrev)
|
||||
|
||||
if( SERVERS )
|
||||
set(sources_windows_Debugging
|
||||
${CMAKE_SOURCE_DIR}/modules/acore/framework/Debugging/WheatyExceptionReport.cpp
|
||||
|
||||
@ -72,9 +72,9 @@ else()
|
||||
endif()
|
||||
|
||||
# Create the actual revision.h file from the above params
|
||||
if(NOT "${rev_hash_cached}" MATCHES "${rev_hash}" OR NOT "${rev_branch_cached}" MATCHES "${rev_branch}" OR NOT EXISTS "${BUILDDIR}/revision_data.h")
|
||||
if(NOT "${rev_hash_cached}" MATCHES "${rev_hash}" OR NOT "${rev_branch_cached}" MATCHES "${rev_branch}" OR NOT EXISTS "${BUILDDIR}/revision.h")
|
||||
configure_file(
|
||||
"${CMAKE_SOURCE_DIR}/revision.h.in.cmake"
|
||||
"${CMAKE_SOURCE_DIR}/src/cmake/revision.h.in.cmake"
|
||||
"${BUILDDIR}/revision.h"
|
||||
@ONLY
|
||||
)
|
||||
@ -10,6 +10,6 @@
|
||||
|
||||
# Need to pass old ${CMAKE_BINARY_DIR} as param because its different at build stage
|
||||
add_custom_target(revision.h ALL
|
||||
COMMAND ${CMAKE_COMMAND} -DBUILDDIR=${CMAKE_BINARY_DIR} -P ${CMAKE_SOURCE_DIR}/modules/acore/cmake/genrev.cmake
|
||||
COMMAND ${CMAKE_COMMAND} -DBUILDDIR=${CMAKE_BINARY_DIR} -P ${CMAKE_SOURCE_DIR}/src/cmake/genrev.cmake
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
)
|
||||
@ -10,6 +10,8 @@
|
||||
|
||||
# Enable precompiled headers when using the GCC compiler.
|
||||
|
||||
CU_SET_PATH("AC_SCRIPTS_DIR" "${CMAKE_CURRENT_LIST_DIR}")
|
||||
|
||||
if (USE_SCRIPTPCH)
|
||||
set(scripts_STAT_PCH_HDR PrecompiledHeaders/ScriptPCH.h)
|
||||
set(scripts_STAT_PCH_SRC PrecompiledHeaders/ScriptPCH.cpp)
|
||||
@ -34,6 +36,23 @@ AC_ADD_SCRIPT_LOADER("Spell" "ScriptLoader.h")
|
||||
AC_ADD_SCRIPT_LOADER("SC_Smart" "ScriptLoader.h")
|
||||
AC_ADD_SCRIPT_LOADER("Command" "ScriptLoader.h")
|
||||
|
||||
CU_SET_PATH("CMAKE_AC_MODULE_DIR" "${CMAKE_CURRENT_LIST_DIR}")
|
||||
|
||||
if(SCRIPTS)
|
||||
include(World/CMakeLists.txt)
|
||||
include(OutdoorPvP/CMakeLists.txt)
|
||||
include(EasternKingdoms/CMakeLists.txt)
|
||||
include(Kalimdor/CMakeLists.txt)
|
||||
include(Outland/CMakeLists.txt)
|
||||
include(Northrend/CMakeLists.txt)
|
||||
include(Events/CMakeLists.txt)
|
||||
include(Pet/CMakeLists.txt)
|
||||
endif()
|
||||
|
||||
if(EXISTS "Custom/CMakeLists.txt")
|
||||
include(Custom/CMakeLists.txt)
|
||||
endif()
|
||||
|
||||
CU_GET_GLOBAL("AC_ADD_SCRIPTS_LIST")
|
||||
CU_GET_GLOBAL("AC_ADD_SCRIPTS_INCLUDE")
|
||||
CU_GET_GLOBAL("AC_SCRIPTS_SOURCES")
|
||||
|
||||
169
src/scripts/EasternKingdoms/CMakeLists.txt
Normal file
169
src/scripts/EasternKingdoms/CMakeLists.txt
Normal file
@ -0,0 +1,169 @@
|
||||
# Copyright (C)
|
||||
#
|
||||
# This file is free software; as a special exception the author gives
|
||||
# unlimited permission to copy and/or distribute it, with or without
|
||||
# modifications, as long as this notice is preserved.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
set(scripts_STAT_SRCS
|
||||
${scripts_STAT_SRCS}
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_ghostlands.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_eversong_woods.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/AlteracValley/boss_galvangar.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/AlteracValley/boss_balinda.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/AlteracValley/boss_drekthar.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/AlteracValley/boss_vanndar.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/AlteracValley/alterac_valley.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_high_interrogator_gerstahn.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_gorosh_the_dervish.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_anubshiah.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_tomb_of_seven.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_general_angerforge.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_grizzle.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_ambassador_flamelash.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/instance_blackrock_depths.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_moira_bronzebeard.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_emperor_dagran_thaurissan.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_chromaggus.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_razorgore.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_firemaw.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_broodlord_lashlayer.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_ebonroc.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/instance_blackwing_lair.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_vaelastrasz.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_nefarian.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_flamegor.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackwingLair/blackwing_lair.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_pyroguard_emberseer.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_warmaster_voone.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mother_smolderweb.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_quartermaster_zigris.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_halycon.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_overlord_wyrmthalak.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_shadow_hunter_voshgajin.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gyth.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_rend_blackhand.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_highlord_omokk.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_the_beast.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gizrul_the_slavener.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_urok_doomhowl.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_lord_valthalak.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/blackrock_spire.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/BlackrockSpire/instance_blackrock_spire.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_gehennas.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_lucifron.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_golemagg.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_majordomo_executus.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_baron_geddon.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_ragnaros.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_garr.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/molten_core.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/instance_molten_core.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_sulfuron_harbinger.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_magmadar.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/BlackrockMountain/MoltenCore/boss_shazzrah.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Scholomance/scholomance.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Scholomance/instance_scholomance.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Scholomance/boss_kirtonos_the_herald.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_isle_of_queldanas.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/boss_hakkar.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/boss_mandokir.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/boss_marli.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/boss_hazzarah.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/boss_jeklik.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/boss_grilek.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/zulgurub.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/boss_renataki.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/boss_arlokk.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/boss_gahzranka.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/boss_venoxis.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/instance_zulgurub.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/boss_jindo.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/boss_wushoolay.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulGurub/boss_thekal.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_wetlands.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_arathi_highlands.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Gnomeregan/instance_gnomeregan.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_redridge_mountains.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_ironforge.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ScarletEnclave/chapter2.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ScarletEnclave/chapter5.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ScarletEnclave/chapter1.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ScarletEnclave/zone_the_scarlet_enclave.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_eastern_plaguelands.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Stratholme/instance_stratholme.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Stratholme/stratholme.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_tirisfal_glades.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/SunkenTemple/sunken_temple.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/SunkenTemple/instance_sunken_temple.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/MagistersTerrace/boss_felblood_kaelthas.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/MagistersTerrace/magisters_terrace.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/MagistersTerrace/boss_selin_fireheart.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/MagistersTerrace/boss_vexallus.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Uldaman/uldaman.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Uldaman/instance_uldaman.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_swamp_of_sorrows.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/SunwellPlateau/boss_eredar_twins.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/SunwellPlateau/boss_kiljaeden.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/SunwellPlateau/sunwell_plateau.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/SunwellPlateau/boss_muru.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/SunwellPlateau/boss_kalecgos.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/SunwellPlateau/boss_brutallus.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/SunwellPlateau/boss_felmyst.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_stranglethorn_vale.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Deadmines/boss_mr_smite.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Deadmines/instance_deadmines.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Deadmines/deadmines.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_duskwood.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ScarletMonastery/instance_scarlet_monastery.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_undercity.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_loch_modan.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ShadowfangKeep/instance_shadowfang_keep.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ShadowfangKeep/shadowfang_keep.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_burning_steppes.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_blasted_lands.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_stormwind_city.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulAman/boss_halazzi.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulAman/boss_hexlord.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulAman/boss_zuljin.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulAman/boss_akilzon.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulAman/instance_zulaman.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulAman/boss_janalai.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulAman/boss_nalorakk.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulAman/zulaman.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/ZulAman/zulaman.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_hinterlands.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_western_plaguelands.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_alterac_mountains.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_westfall.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/zone_silverpine_forest.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/instance_karazhan.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/boss_nightbane.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/karazhan.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/boss_curator.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/boss_netherspite.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/boss_maiden_of_virtue.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/boss_midnight.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/bosses_opera.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/boss_moroes.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/boss_terestian_illhoof.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/boss_servant_quarters.cpp
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/Karazhan/karazhan.h
|
||||
${AC_SCRIPTS_DIR}/EasternKingdoms/TheStockade/instance_the_stockade.cpp
|
||||
)
|
||||
|
||||
AC_ADD_SCRIPT_LOADER("EasternKingdoms" "${AC_SCRIPTS_DIR}/ScriptLoader.h")
|
||||
|
||||
message(" -> Prepared: Eastern Kingdoms")
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user