diff options
| author | Token Gamedev <token.gamedev@gmail.com> | 2024-10-18 15:26:22 +0530 |
|---|---|---|
| committer | Token Gamedev <token.gamedev@gmail.com> | 2024-10-18 15:26:22 +0530 |
| commit | 41eed14ec5a1964eaee2cf26663351e028eed3a9 (patch) | |
| tree | d296643bfd252aba66a4f38cd0578538d9b8981a /misc | |
| parent | edb8e2b1b2b09236bdcd76cb6c8b40b6fbb2abaf (diff) | |
| download | redot-engine-41eed14ec5a1964eaee2cf26663351e028eed3a9.tar.gz | |
Fixed the VS project creation
Diffstat (limited to 'misc')
| -rw-r--r-- | misc/msvs/props.template | 2 | ||||
| -rw-r--r-- | misc/msvs/vcxproj.template | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/misc/msvs/props.template b/misc/msvs/props.template index 82e3e81f18..6d1d1d6d74 100644 --- a/misc/msvs/props.template +++ b/misc/msvs/props.template @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup Condition="'$(GodotConfiguration)|$(GodotPlatform)'=='%%VSCONF%%'"> + <PropertyGroup Condition="'$(RedotConfiguration)|$(RedotPlatform)'=='%%VSCONF%%'"> <NMakeBuildCommandLine>%%BUILD%%</NMakeBuildCommandLine> <NMakeReBuildCommandLine>%%REBUILD%%</NMakeReBuildCommandLine> <NMakeCleanCommandLine>%%CLEAN%%</NMakeCleanCommandLine> diff --git a/misc/msvs/vcxproj.template b/misc/msvs/vcxproj.template index 2cdb82d01f..0d3b56c949 100644 --- a/misc/msvs/vcxproj.template +++ b/misc/msvs/vcxproj.template @@ -5,7 +5,7 @@ </ItemGroup> <PropertyGroup Label="Globals"> <ProjectGuid>{%%UUID%%}</ProjectGuid> - <RootNamespace>godot</RootNamespace> + <RootNamespace>redot</RootNamespace> <Keyword>MakeFileProj</Keyword> <VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName> </PropertyGroup> @@ -15,15 +15,15 @@ <ConfigurationType>Makefile</ConfigurationType> <UseOfMfc>false</UseOfMfc> <PlatformToolset>v143</PlatformToolset> - <OutDir>$(SolutionDir)\bin\$(GodotPlatform)\$(GodotConfiguration)\</OutDir> - <IntDir>obj\$(GodotPlatform)\$(GodotConfiguration)\</IntDir> + <OutDir>$(SolutionDir)\bin\$(RedotPlatform)\$(RedotConfiguration)\</OutDir> + <IntDir>obj\$(RedotPlatform)\$(RedotConfiguration)\</IntDir> <LayoutDir>$(OutDir)\Layout</LayoutDir> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <ImportGroup Label="ExtensionSettings"> </ImportGroup> <ImportGroup Label="PropertySheets"> - <Import Project="$(UserRootDir)\Microsoft.Cpp.$(GodotPlatform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(GodotPlatform).user.props')" Label="LocalAppDataPlatform" /> + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(RedotPlatform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(RedotPlatform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <PropertyGroup Label="UserMacros" /> <PropertyGroup> |
