mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-14 03:09:08 +00:00
9bc219ee14
About Shared Library (shared) and Module Library (module) type of cmake target INSTALL command has different behaviour for ARCHIVE LIBRARY RUNTIME depending on the platform
21 lines
No EOL
601 B
PHP
21 lines
No EOL
601 B
PHP
<?php
|
|
if(!defined('APP_NAME')) {
|
|
die(-1);
|
|
}
|
|
|
|
$_CONF = array();
|
|
|
|
$_CONF['app_achievements_path'] = "../app_achievements/";
|
|
$_CONF['image_url'] = "http://www.3025-game.de/special/app_achievements/";
|
|
$_CONF['enable_webig'] = true;
|
|
$_CONF['enable_offgame'] = true;
|
|
$_CONF['enable_CSR'] = true;
|
|
$_CONF['enable_ADM'] = true;
|
|
|
|
$_CONF['char_mysql_server'] = RYAPI_NELDB_HOST;
|
|
$_CONF['char_mysql_user'] = RYAPI_NELDB_LOGIN;
|
|
$_CONF['char_mysql_pass'] = RYAPI_NELDB_PASS;
|
|
$_CONF['char_mysql_database'] = RYAPI_NELDB_RING;
|
|
|
|
$_CONF['langs'] = array('en','de','fr','es','ru');
|
|
?>
|