Skip to content

Commit

Permalink
win installer improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Kolcha committed Aug 28, 2024
1 parent 835ccb9 commit b43ef55
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
15 changes: 15 additions & 0 deletions dist/msi/app_files.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,27 @@ initial file was generated with the next command:
<Component Id="cmp545DD1E869709E0441A02B1A12D447CE" Directory="dir280A744A3793B4E73B0B13172DB8683E" Guid="{47D1676F-3B07-4FEB-9024-9469730B21D7}">
<File Id="fil1FBAD2125773A7DB7DF8FDC27420C6B7" KeyPath="yes" Source="$(var.MySource)\plugins\chime.dll" />
</Component>
<Component Id="cmpCD914A637DDE0F005E63E3EB94195024" Directory="dir280A744A3793B4E73B0B13172DB8683E" Guid="{74BDB902-B385-4739-93D0-813E24CF27FE}">
<File Id="fil6894D9B2280ECDFD059AE3C34ACF4777" KeyPath="yes" Source="$(var.MySource)\plugins\countdown_timer.dll" />
</Component>
<Component Id="cmp591185D005BC8A86F42703372CEBCC40" Directory="dir280A744A3793B4E73B0B13172DB8683E" Guid="{AB6EFEB8-5069-4BBF-B52A-069587FEFFAB}">
<File Id="filBD8F914FE753A4434FDEDFFDB5A79158" KeyPath="yes" Source="$(var.MySource)\plugins\date.dll" />
</Component>
<Component Id="cmp9D3C488A101B70CFEE382E10C3DA4D9D" Directory="dir280A744A3793B4E73B0B13172DB8683E" Guid="{9864FB1D-B61E-4534-B884-7D8B8AD74B67}">
<File Id="filD3AB63896CD5BC5D2A1E264F82EDFB88" KeyPath="yes" Source="$(var.MySource)\plugins\quick_note.dll" />
</Component>
<Component Id="cmpEC3C1172609A94D290DE749ECA976CD8" Directory="dir280A744A3793B4E73B0B13172DB8683E" Guid="{AE5FFC2E-71E7-4574-A9C8-DAABFD13F0D7}">
<File Id="filE8FAABDE8F28E1B2E79540F4C3B93658" KeyPath="yes" Source="$(var.MySource)\plugins\random_position.dll" />
</Component>
<Component Id="cmpB6F334CE4FC020D6ABDD917EB982807D" Directory="dir280A744A3793B4E73B0B13172DB8683E" Guid="{CCCDFCD3-59EC-48F5-A104-84AB8C753599}">
<File Id="filA1E0F68524268B78C8B1FB86E1EE9071" KeyPath="yes" Source="$(var.MySource)\plugins\spectrum_clock.dll" />
</Component>
<Component Id="cmpDD1F507A49329DF5C1809F83192E389B" Directory="dir280A744A3793B4E73B0B13172DB8683E" Guid="{80983F94-77F2-467A-B063-91280C9E5DB1}">
<File Id="fil049E952A3524BADC7316C6017CBE7584" KeyPath="yes" Source="$(var.MySource)\plugins\stopwatch.dll" />
</Component>
<Component Id="cmp3A5FB4F133FB057DEDF3A5DCD7C48CD4" Directory="dir280A744A3793B4E73B0B13172DB8683E" Guid="{F0B8AA0A-7C87-462F-829B-B2519A5FEDA4}">
<File Id="fil05D4DA97CDEF45B64CB3569E03D36D3D" KeyPath="yes" Source="$(var.MySource)\plugins\var_translucency.dll" />
</Component>
<Component Id="cmp6429D28736F78294E789F1285CDBA0C5" Directory="dir38849F6D66CAD1C9D4D23BF20EB0981D" Guid="{6167DA39-3BFA-4F21-A783-D155C356E320}">
<File Id="fil7AEA337D7CE4012DC6754A25FCEC4511" KeyPath="yes" Source="$(var.MySource)\plugins\generic\qtuiotouchplugin.dll" />
</Component>
Expand Down
2 changes: 2 additions & 0 deletions plugins/random_position/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ target_link_libraries(${PROJECT_NAME} PRIVATE PluginCore)
target_link_libraries(${PROJECT_NAME} PRIVATE Qt::Widgets)

configure_file(${PROJECT_NAME}.json.in ${PROJECT_NAME}.json @ONLY)

target_win_deploy_qt(${PROJECT_NAME} "plugins/${PROJECT_NAME}.dll")
2 changes: 2 additions & 0 deletions plugins/spectrum_clock/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ target_link_libraries(${PROJECT_NAME} PRIVATE PluginCore)
target_link_libraries(${PROJECT_NAME} PRIVATE Qt::Gui)

configure_file(${PROJECT_NAME}.json.in ${PROJECT_NAME}.json @ONLY)

target_win_deploy_qt(${PROJECT_NAME} "plugins/${PROJECT_NAME}.dll")
2 changes: 2 additions & 0 deletions plugins/var_translucency/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ target_link_libraries(${PROJECT_NAME} PRIVATE PluginCore)
target_link_libraries(${PROJECT_NAME} PRIVATE Qt::Widgets)

configure_file(${PROJECT_NAME}.json.in ${PROJECT_NAME}.json @ONLY)

target_win_deploy_qt(${PROJECT_NAME} "plugins/${PROJECT_NAME}.dll")

0 comments on commit b43ef55

Please sign in to comment.