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/common | |
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/common')
-rw-r--r-- | src/common/common.vcxproj | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/common/common.vcxproj b/src/common/common.vcxproj index bc2605dd..13610cee 100644 --- a/src/common/common.vcxproj +++ b/src/common/common.vcxproj @@ -14,7 +14,6 @@ </ProjectConfiguration> </ItemGroup> <ItemGroup> - <ClInclude Include="..\..\config-win32.h" /> <ClInclude Include="cfgfiles.h" /> <ClInclude Include="chanopt.h" /> <ClInclude Include="ctcp.h" /> @@ -75,6 +74,10 @@ <ClCompile Include="util.c" /> <ClCompile Include="hexchat.c" /> </ItemGroup> + <ItemGroup> + <None Include="..\..\config-win32.h.tt" /> + <ClInclude Include="..\..\config-win32.h" /> + </ItemGroup> <PropertyGroup Label="Globals"> <ProjectGuid>{87554B59-006C-4D94-9714-897B27067BA3}</ProjectGuid> <Keyword>Win32Proj</Keyword> @@ -151,4 +154,15 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> + <ItemDefinitionGroup> + <PreBuildEvent> + <Command> + <![CDATA[ +SET SOLUTIONDIR=$(SolutionDir)..\ +"%PROGRAMFILES%\Common Files\microsoft shared\TextTemplating\12.0\TextTransform.exe" -out "%SOLUTIONDIR%config-win32.h" "%SOLUTIONDIR%config-win32.h.tt" +"%PROGRAMFILES%\Common Files\microsoft shared\TextTemplating\12.0\TextTransform.exe" -out "%SOLUTIONDIR%win32\version.txt" "%SOLUTIONDIR%win32\version.txt.tt" + ]]> + </Command> + </PreBuildEvent> + </ItemDefinitionGroup> </Project> \ No newline at end of file |