Files
TrinityCore/src/shared/CMakeLists.txt
n0n4m3 2028f0658b Removed mtmaps OpenMP
Implement mtmaps based on ACE
For stable work MapUpdate.Threads=2 in config

--HG--
branch : trunk
2009-12-17 07:34:00 +01:00

31 lines
492 B
CMake

add_subdirectory(vmap)
add_subdirectory(Auth)
add_subdirectory(Config)
add_subdirectory(Database)
########### next target ###############
SET(shared_STAT_SRCS
ByteBuffer.h
Common.cpp
Common.h
DelayExecutor.cpp
DelayExecutor.h
Errors.h
Log.cpp
Log.h
ProgressBar.cpp
ProgressBar.h
Threading.cpp
Timer.h
Util.cpp
Util.h
WorldPacket.h
SystemConfig.h
)
add_library(shared STATIC ${shared_STAT_SRCS})
target_link_libraries(
shared
${ACE_LIBRARY}
)