complete visual studio renaming

This commit is contained in:
2018-09-16 14:45:02 +02:00
parent 71de44a7c1
commit dfc4a956ab
4 changed files with 5 additions and 5 deletions

6
.gitignore vendored
View File

@@ -2,10 +2,10 @@ xcuserdata
xcshareddata/
x64/
.vs/
engine.vcxproj.user
PanoPainter.vcxproj.user
ipch/
engine.VC.opendb
engine.sdf
PanoPainter.VC.opendb
PanoPainter.sdf
android/build/
android/.gradle/
android/.externalNativeBuild/

Binary file not shown.

View File

@@ -15,7 +15,7 @@
---------------------------------------------------------------------------- */
#include "pch.h"
#include "..\..\engine\log.h"
#include "..\..\src\log.h"
#include "Utils.h"
//////////////////////////////////////////////////////////////////////////////

View File

@@ -22,7 +22,7 @@ version_gen_h += '#define PP_RC_BUILD_VERSION %s,0\n' % version_number.replace('
version_gen_h += '#define PP_RC_BUILD_VERSION_STRING "%s\\0"\n' % version
version_gen_h += '#define PP_RC_PRODUCT_VERSION %s,0,0\n' % tag.replace('.',',')
version_gen_h += '#define PP_RC_PRODUCT_VERSION_STRING "%s\\0"\n' % tag
f = open("engine/version.gen.h", "w")
f = open("src/version.gen.h", "w")
f.write(version_gen_h)