Skip to content

Commit

Permalink
Qbs: Resolved naming conflict for libtiled on Windows (#3832)
Browse files Browse the repository at this point in the history
The tiled.dll pdb file had the same name as the one for tiled.exe.

Co-authored-by: Jesse Tremblay <jessetrem@gmail.com>
  • Loading branch information
azagaya and jessetrem committed Oct 20, 2023
1 parent d713672 commit f1fb902
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dist/win/installer.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<Shortcut Id="startmenuTiled" Directory="ProgramMenuFolder" Name="Tiled" WorkingDirectory='INSTALLDIR' Icon="tiled.exe" IconIndex="0" Advertise="yes" />
</File>
<File Source="$(var.InstallRoot)\terraingenerator.exe" />
<File Source="$(var.InstallRoot)\tiled.dll" />
<File Source="$(var.InstallRoot)\libtiled.dll" />
<File Source="$(var.InstallRoot)\tilededitor.dll" />
<File Source="$(var.InstallRoot)\tmxrasterizer.exe" />
<File Source="$(var.InstallRoot)\tmxviewer.exe" />
Expand Down
1 change: 1 addition & 0 deletions src/libtiled/libtiled.qbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import qbs.Probes as Probes

DynamicLibrary {
targetName: "tiled"
cpp.dynamicLibraryPrefix: "lib"

Depends { name: "cpp" }
Depends { name: "Qt"; submodules: "gui"; versionAtLeast: "5.12" }
Expand Down

0 comments on commit f1fb902

Please sign in to comment.