keep application name and short name the same for the dev and prod build or some migration logic will work differently for each build

Signed-off-by: kaikli <75146125+kaikli@users.noreply.github.com>
This commit is contained in:
kaikli 2024-12-18 07:33:00 +01:00 коммит произвёл Matthieu Gallien
Родитель 9d2f681b08
Коммит a1362049c7
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -1,6 +1,8 @@
# keep the application name and short name the same or different for dev and prod build
# or some migration logic will behave differently for each build
if(NEXTCLOUD_DEV)
set( APPLICATION_NAME "NextcloudDev" )
set( APPLICATION_SHORTNAME "NextDev" )
set( APPLICATION_SHORTNAME "NextcloudDev" )
set( APPLICATION_EXECUTABLE "nextclouddev" )
set( APPLICATION_ICON_NAME "Nextcloud" )
else()