mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-11 09:49:05 +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
105 lines
2.7 KiB
Batchfile
105 lines
2.7 KiB
Batchfile
@echo off
|
|
|
|
REM This script will start all the services with good parameters
|
|
|
|
REM set MODE=Debug
|
|
set MODE=..\..\build\bin\Release
|
|
|
|
rem AS
|
|
start %MODE%\ryzom_admin_service.exe --fulladminname=admin_executor_service --shortadminname=AES
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem bms_master
|
|
start %MODE%\ryzom_backup_service --writepid -P49990
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem egs
|
|
start %MODE%\ryzom_entities_game_service --writepid
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem gpms
|
|
start %MODE%\ryzom_gpm_service --writepid
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem ios
|
|
start %MODE%\ryzom_ios_service --writepid
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem rns
|
|
start %MODE%\ryzom_naming_service --writepid
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem rws
|
|
start %MODE%\ryzom_welcome_service --writepid
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem ts
|
|
start %MODE%\ryzom_tick_service --writepid
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem ms
|
|
start %MODE%\ryzom_mirror_service --writepid
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem ais_newbyland
|
|
start %MODE%\ryzom_ai_service --writepid -mCommon:Newbieland:Post
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem mfs
|
|
start %MODE%\ryzom_mail_forum_service --writepid
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem su
|
|
start %MODE%\ryzom_shard_unifier_service --writepid
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem fes
|
|
start %MODE%\ryzom_frontend_service --writepid
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem sbs
|
|
start %MODE%\ryzom_session_browser_service --writepid
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem lgs
|
|
start %MODE%\ryzom_logger_service --writepid
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem lgs
|
|
start %MODE%\ryzom_dynamic_scenario_service --writepid
|
|
|
|
rem wait 2s (yes, i didn't find a better way to wait N seconds)
|
|
ping -n 2 127.0.0.1 > NUL 2>&1
|
|
|
|
rem ras
|
|
start %MODE%\ryzom_admin_service --fulladminname=admin_service --shortadminname=AS --writepid
|