736aae3d39
- Add cppversion as makegen config parameter, making it possible to specify which cpp version to use - General cleanup of unused code
24 lines
684 B
XML
24 lines
684 B
XML
<makegen>
|
|
<configuration name="Release">
|
|
<cppversion>c++17</cppversion>
|
|
<outputdir>bin/Release/</outputdir>
|
|
<outputname>makegen</outputname>
|
|
<outputtype>executable</outputtype>
|
|
<projectname>MakeGen</projectname>
|
|
<srcdir>src/</srcdir>
|
|
</configuration>
|
|
<configuration name="Debug">
|
|
<cflag>-g3</cflag>
|
|
<cflag>-w</cflag>
|
|
<cppversion>c++17</cppversion>
|
|
<define>_DEBUG</define>
|
|
<outputdir>bin/Debug/</outputdir>
|
|
<outputname>makegen</outputname>
|
|
<outputtype>executable</outputtype>
|
|
<projectname>MakeGen</projectname>
|
|
<srcdir>src/</srcdir>
|
|
</configuration>
|
|
<target>Release</target>
|
|
<version>v1.3.11</version>
|
|
</makegen>
|