You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This may be a bug on this particular toolchain, and a workaround is to replace the version of windres.exe with another executable, for instance the one that is distributed by Qt. The root of the problem is that windres.exe does not find the headers included in VersionResource.rc correctly. Another workaround is fixing the "-I" arguments of the command.
Anyway, the current cmake script that generates this build step: "generate_product_version.cmake" in cmake_admin has more shortcomings:
It provides versioninfo only to the libfluidsynth.dll, but not to the fluidsynth.exe program.
It is unnecessarily complicated. It may be replaced by a single call to the cmake macro configure_file() applied to a VersionResource.rc.in file template
It has no copyright and license attached, and the origin of this script is unclear.
In short: I want to replace it.
The text was updated successfully, but these errors were encountered:
FluidSynth version
[cmake] Build Summary:
[cmake] FluidSynth Version: 2.4.1
[cmake] Library version: 3.3.1
[cmake] Git revision: e604d9e
[cmake] Build type: Debug
This corresponds to the current git master branch.
Describe the bug
When building Fluidsynth with MSys2 and MinGW64's
windres.exe
, I get this error message:Expected behavior
The build process should succeed.
Steps to reproduce
Additional context
This may be a bug on this particular toolchain, and a workaround is to replace the version of
windres.exe
with another executable, for instance the one that is distributed by Qt. The root of the problem is thatwindres.exe
does not find the headers included inVersionResource.rc
correctly. Another workaround is fixing the "-I" arguments of the command.Anyway, the current cmake script that generates this build step: "generate_product_version.cmake" in cmake_admin has more shortcomings:
configure_file()
applied to a VersionResource.rc.in file templateIn short: I want to replace it.
The text was updated successfully, but these errors were encountered: