|
|
|
@ -1,7 +1,26 @@
|
|
|
|
|
FILE(GLOB SRC *.cpp time_weather_season/*.cpp)
|
|
|
|
|
FILE(GLOB PRIV_H *.h time_weather_season/*.h)
|
|
|
|
|
|
|
|
|
|
SOURCE_GROUP(headers FILES ${PRIV_H})
|
|
|
|
|
FILE(GLOB R2
|
|
|
|
|
dms.h dms.cpp
|
|
|
|
|
scenario.h scenario.cpp
|
|
|
|
|
user_connection_mgr.h user_connection_mgr.cpp
|
|
|
|
|
object.h object.cpp
|
|
|
|
|
server_animation_module.h server_animation_module.cpp
|
|
|
|
|
server_admin_module.h server_admin_module.cpp
|
|
|
|
|
server_edition_module.h server_edition_module.cpp
|
|
|
|
|
string_mgr_module.h string_mgr_module.cpp
|
|
|
|
|
scenario_entry_points.h scenario_entry_points.cpp
|
|
|
|
|
small_string_manager.h small_string_manager.cpp
|
|
|
|
|
ai_wrapper.h ai_wrapper.cpp
|
|
|
|
|
r2_*.h r2_*.cpp
|
|
|
|
|
ring_*.h ring_*.cpp)
|
|
|
|
|
|
|
|
|
|
LIST(REMOVE_ITEM SRC R2)
|
|
|
|
|
LIST(REMOVE_ITEM PRIV_H R2)
|
|
|
|
|
|
|
|
|
|
SOURCE_GROUP("" FILES ${SRC} ${PRIV_H})
|
|
|
|
|
SOURCE_GROUP("R2" FILES ${R2})
|
|
|
|
|
|
|
|
|
|
# Filter out the source files not actually compiled.
|
|
|
|
|
LIST(REMOVE_ITEM SRC ${CMAKE_CURRENT_SOURCE_DIR}/enum_template.cpp)
|
|
|
|
|