mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2024-11-24 16:42:46 +01:00
42abf4101c
since the entire ting is so incredibly broken in cmake, use the approach taken by csync (which emulates the approach of autotools), to get the directories right. This mandates changes in the theme, which need discussion (APPLICATION_SHORTNAME must now equal appName(), and APPLICATION_NAME should equal appGuiName()).
18 lines
457 B
C
18 lines
457 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#cmakedefine USE_INOTIFY 1
|
|
#cmakedefine WITH_QTKEYCHAIN 1
|
|
|
|
#cmakedefine GIT_SHA1 "@GIT_SHA1@"
|
|
#cmakedefine APPLICATION_DOMAIN @APPLICATION_DOMAIN@
|
|
#cmakedefine THEME_CLASS @THEME_CLASS@
|
|
#cmakedefine THEME_INCLUDE @THEME_INCLUDE@
|
|
|
|
#cmakedefine APPLICATION_NAME "@APPLICATION_NAME@"
|
|
#cmakedefine APPLICATION_SHORTNAME "@APPLICATION_SHORTNAME@"
|
|
|
|
#cmakedefine SYSCONFDIR "@SYSCONFDIR@"
|
|
#cmakedefine DATADIR "@DATADIR@"
|
|
#endif
|