Skip to content

Commit

Permalink
Include compiled plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
SchrodingersGat committed Dec 18, 2024
1 parent df34248 commit 41e07e4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion lumberjack.iss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ Source: "{#BuildDir}\lumberjack.exe"; DestDir: "{app}"; Flags: ignoreversion
; DLL files
Source: "{#BuildDir}\*.dll"; DestDir: "{app}"; Flags: ignoreversion

; Plugins
Source: "plugins\build\release\*.dll"; DestDir: "{app}\plugins"; Flags: ignoreversion

; Qt directories
Source: "{#BuildDir}\generic\*"; DestDir: "{app}\generic"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "{#BuildDir}\iconengines\*"; DestDir: "{app}\iconengines"; Flags: ignoreversion recursesubdirs createallsubdirs
Expand All @@ -66,7 +69,7 @@ Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon

[Run]
; Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent

[Code]
// The following code is to optionally allow multiple versions to be
Expand Down
2 changes: 1 addition & 1 deletion plugins/csv_exporter/csv_exporter.pro
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ CONFIG(debug, debug|release) {

} else {
CONFIG += release
DESTDIR = build/release
DESTDIR = ../build/release
}

RCC_DIR = $$DESDIR
Expand Down
2 changes: 1 addition & 1 deletion plugins/csv_importer/csv_importer.pro
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ CONFIG(debug, debug|release) {

} else {
CONFIG += release
DESTDIR = build/release
DESTDIR = ../build/release
}

RCC_DIR = $$DESDIR
Expand Down
2 changes: 1 addition & 1 deletion plugins/offset_filter/offset_filter.pro
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ CONFIG(debug, debug|release) {

} else {
CONFIG += release
DESTDIR = build/release
DESTDIR = ../build/release
}

RCC_DIR = $$DESDIR
Expand Down
2 changes: 1 addition & 1 deletion plugins/scaler_filter/scaler_filter.pro
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ CONFIG(debug, debug|release) {

} else {
CONFIG += release
DESTDIR = build/release
DESTDIR = ../build/release
}

RCC_DIR = $$DESDIR
Expand Down

0 comments on commit 41e07e4

Please sign in to comment.