GAMES: renamed projects

master
Martin Gerhardy 2021-03-20 07:09:22 +01:00
parent 6af0f4f4ff
commit 5d41fbcf48
8 changed files with 9 additions and 8 deletions

View File

@ -1,4 +1,4 @@
project(client)
project(owclient)
add_subdirectory(modules)
set(SRCS
@ -17,11 +17,11 @@ set(LUA_SRCS
ui/window/popup.lua
ui/window/style.lua
ui/window/validation_failed.lua
ui/${PROJECT_NAME}.lua
ui/client.lua
)
set(FILES
client/client-keybindings.cfg
${PROJECT_NAME}/${PROJECT_NAME}-keybindings.cfg
shared/font.ttf
shared/biomes.lua

View File

@ -55,7 +55,7 @@ Client::Client(const metric::MetricPtr& metric, const animation::AnimationCacheP
_messageSender(messageSender), _worldRenderer(assetVolumeCache), _movement(soundManager),
_stockDataProvider(stockDataProvider), _volumeCache(volumeCache), _meshCache(meshCache),
_camera(_worldRenderer), _soundManager(soundManager), _assetVolumeCache(assetVolumeCache) {
init(ORGANISATION, "client");
init(ORGANISATION, "owclient");
}
Client::~Client() {

View File

@ -1,4 +1,4 @@
project(server)
project(owserver)
set(SRCS
Server.cpp Server.h
)
@ -48,7 +48,7 @@ set(LUA_SRCS
)
set(FILES
server/server-autoexec.cfg
${PROJECT_NAME}/${PROJECT_NAME}-autoexec.cfg
)
set(MANIFESTS
deployment/postgres-config.yaml.in
@ -56,8 +56,9 @@ set(MANIFESTS
deployment/postgres-service.yaml.in
deployment/postgres-storage.yaml.in
deployment/postgres-secrets.yaml.in
deployment/server-deployment.yaml.in
deployment/server-service.yaml.in
deployment/owserver-deployment.yaml.in
deployment/owserver-service.yaml.in
deployment/owserver-ingress.yaml.in
)
engine_add_executable(TARGET ${PROJECT_NAME} SRCS ${SRCS} FILES ${FILES} LUA_SRCS ${LUA_SRCS})