18 lines
995 B
NSIS
18 lines
995 B
NSIS
; For license of this file, see <project-root-folder>/LICENSE.md.
|
|
|
|
!define VERSION "@CMAKE_PROJECT_VERSION@"
|
|
!define APP_VERSION "@CMAKE_PROJECT_VERSION@"
|
|
!define APP_NAME "@APP_NAME@"
|
|
!define EXE_NAME "@CMAKE_PROJECT_NAME@.exe"
|
|
!define LICENSE_FILE "@CMAKE_SOURCE_DIR@\resources\text\COPYING_GNU_GPL"
|
|
!define MUI_ICON "@CMAKE_SOURCE_DIR@\resources\graphics\@CMAKE_PROJECT_NAME@.ico"
|
|
!define MUI_UNICON "@CMAKE_SOURCE_DIR@\resources\graphics\@CMAKE_PROJECT_NAME@.ico"
|
|
!define PATCH "0"
|
|
!define BINARY_TREE "@CMAKE_BINARY_DIR@\app"
|
|
|
|
!define PLUGIN_FEEDLY "@CMAKE_BINARY_DIR@\app\plugins\rssguard-feedly.*"
|
|
!define PLUGIN_GMAIL "@CMAKE_BINARY_DIR@\app\plugins\rssguard-gmail.*"
|
|
!define PLUGIN_GREADER "@CMAKE_BINARY_DIR@\app\plugins\rssguard-greader.*"
|
|
!define PLUGIN_NEXTCLOUD "@CMAKE_BINARY_DIR@\app\plugins\rssguard-nextcloud.*"
|
|
!define PLUGIN_STANDARD "@CMAKE_BINARY_DIR@\app\plugins\rssguard-standard.*"
|
|
!define PLUGIN_TTRSS "@CMAKE_BINARY_DIR@\app\plugins\rssguard-ttrss.*" |