mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-17 19:05:42 +00:00
* feat(Core/Scripts): split the huge scriptloader into smaller pieces
* AddSC_swamp_of_sorrows del
* 1
* add mod info
* 1
* 039f0e0faa
Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com>
35 lines
580 B
CMake
35 lines
580 B
CMake
#
|
|
# Copyright (C) 2016+ AzerothCore <www.azerothcore.org>
|
|
#
|
|
|
|
CollectSourceFiles(
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
PRIVATE_SOURCES)
|
|
|
|
# Group sources
|
|
GroupSources(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
add_library(shared
|
|
${PRIVATE_SOURCES})
|
|
|
|
CollectIncludeDirectories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
PUBLIC_INCLUDES)
|
|
|
|
target_include_directories(shared
|
|
PUBLIC
|
|
${PUBLIC_INCLUDES}
|
|
PRIVATE
|
|
${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
target_link_libraries(shared
|
|
PRIVATE
|
|
acore-core-interface
|
|
PUBLIC
|
|
database)
|
|
|
|
set_target_properties(shared
|
|
PROPERTIES
|
|
FOLDER
|
|
"server")
|