
- Removed any remaining TXT and SQL references from files. - The 'make sql' command is now replaced by 'make server'. - Removed account.engine feature as it is no longer needed. - Moved login and IP ban configs to inter_athena.conf. - Cleaned up cmake files. - Miscellaneous clean ups.
20 lines
328 B
CMake
20 lines
328 B
CMake
|
|
#
|
|
# setup and static libraries
|
|
#
|
|
add_subdirectory( common )
|
|
if( HAVE_common )
|
|
option( BUILD_SERVERS "build server executables" ON )
|
|
else()
|
|
message( STATUS "Disabled server targets (requires common)" )
|
|
endif()
|
|
|
|
|
|
#
|
|
# targets
|
|
#
|
|
add_subdirectory( login )
|
|
add_subdirectory( char )
|
|
add_subdirectory( map )
|
|
add_subdirectory( tool )
|