mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-21 12:47:07 +00:00
18 lines
328 B
CMake
18 lines
328 B
CMake
CU_RUN_HOOK("BEFORE_ACORE_LOAD")
|
|
|
|
add_subdirectory(deps)
|
|
|
|
if( SERVERS )
|
|
add_subdirectory(framework)
|
|
add_subdirectory(world-engine/collision)
|
|
else()
|
|
if( TOOLS )
|
|
add_subdirectory(extractors)
|
|
add_subdirectory(world-engine/collision)
|
|
add_subdirectory(framework)
|
|
endif()
|
|
endif()
|
|
|
|
CU_RUN_HOOK("AFTER_ACORE_LOAD")
|
|
|