
- Removed @ Autoconf/make and CMake, VC Projects will be cleaned in a additional commit. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16203 54d463be-8e91-2dee-dedb-b68131a5f0ec
20 lines
348 B
CMake
20 lines
348 B
CMake
|
|
#
|
|
# setup and static libraries
|
|
#
|
|
add_subdirectory( common )
|
|
if( HAVE_common_sql )
|
|
option( BUILD_SQL_SERVERS "build sql server executables" ON )
|
|
else()
|
|
message( STATUS "Disabled sql server targets (requires common_sql)" )
|
|
endif()
|
|
|
|
|
|
#
|
|
# targets
|
|
#
|
|
add_subdirectory( login )
|
|
add_subdirectory( char )
|
|
add_subdirectory( map )
|
|
add_subdirectory( tool )
|