diff options
author | Arnavion <arnavion@gmail.com> | 2013-10-12 18:41:27 -0700 |
---|---|---|
committer | Arnavion <arnavion@gmail.com> | 2013-10-12 18:41:27 -0700 |
commit | e2edbfe47d89059f2020baccd76ad4715ef87871 (patch) | |
tree | f1948820b339f513f036e62f04ebcd0ed9803085 /src/fe-gtk/fe-gtk.vcxproj | |
parent | 0061cd38d07396cfa42deaaa199c334b40f3d0d3 (diff) |
win32: Use version information from configure.ac to populate the Windows-specific files that need it - config-win32.h, version.txt, hexchat.rc, hexchat.iss
This is done via T4 templates. The original files are now generated at build-time and so have been added to .gitignore and removed from the repository, with the exception of version.txt which must be hosted on GitHub for the updater plugin.
Diffstat (limited to 'src/fe-gtk/fe-gtk.vcxproj')
-rw-r--r-- | src/fe-gtk/fe-gtk.vcxproj | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/fe-gtk/fe-gtk.vcxproj b/src/fe-gtk/fe-gtk.vcxproj index 73526766..7cc40da8 100644 --- a/src/fe-gtk/fe-gtk.vcxproj +++ b/src/fe-gtk/fe-gtk.vcxproj @@ -97,8 +97,14 @@ </ItemDefinitionGroup> <ItemDefinitionGroup> <PreBuildEvent> - <Command>$(DepsRoot)\bin\glib-compile-resources.exe --generate-source --sourcedir $(DataDir) --target "$(ProjectDir)resources.c" "$(DataDir)hexchat.gresource.xml"</Command> - <Message>Build gresource file</Message> + <Command> + <![CDATA[ +SET SOLUTIONDIR=$(SolutionDir)..\ +"%PROGRAMFILES%\Common Files\microsoft shared\TextTemplating\12.0\TextTransform.exe" -out hexchat.rc hexchat.rc.tt +$(DepsRoot)\bin\glib-compile-resources.exe --generate-source --sourcedir $(DataDir) --target "$(ProjectDir)resources.c" "$(DataDir)hexchat.gresource.xml" + ]]> + </Command> + <Message>Build hexchat.rc and gresource file</Message> </PreBuildEvent> </ItemDefinitionGroup> <ItemGroup> @@ -166,6 +172,7 @@ <Manifest Include="hexchat.exe.manifest" /> </ItemGroup> <ItemGroup> + <None Include="hexchat.rc.tt" /> <ResourceCompile Include="hexchat.rc" /> </ItemGroup> <ItemGroup> |