DISTS: Merge MSVC versions into one folder
This commit is contained in:
parent
fd0d65496e
commit
be0150fd85
31 changed files with 50 additions and 1697 deletions
21
.gitignore
vendored
21
.gitignore
vendored
|
@ -105,14 +105,14 @@ project.xcworkspace
|
||||||
/dists/macosx/scummvm.xcodeproj
|
/dists/macosx/scummvm.xcodeproj
|
||||||
/dists/macosx/create_project
|
/dists/macosx/create_project
|
||||||
|
|
||||||
/dists/msvc*/[Dd]ebug*/
|
/dists/msvc/[Dd]ebug*/
|
||||||
/dists/msvc*/[Rr]elease*/
|
/dists/msvc/[Rr]elease*/
|
||||||
/dists/msvc*/[Aa]nalysis*/
|
/dists/msvc/[Aa]nalysis*/
|
||||||
/dists/msvc*/*.lib
|
/dists/msvc/*.lib
|
||||||
/dists/msvc*/*.SAV
|
/dists/msvc/*.SAV
|
||||||
/dists/msvc*/*.dat
|
/dists/msvc/*.dat
|
||||||
/dists/msvc*/*.dll
|
/dists/msvc/*.dll
|
||||||
/dists/msvc*/test_runner.cpp
|
/dists/msvc/test_runner.cpp
|
||||||
|
|
||||||
/dists/engine-data/testbed-audiocd-files/testbed.config
|
/dists/engine-data/testbed-audiocd-files/testbed.config
|
||||||
/dists/engine-data/testbed-audiocd-files/testbed.out
|
/dists/engine-data/testbed-audiocd-files/testbed.out
|
||||||
|
@ -193,6 +193,7 @@ ipch/
|
||||||
*.tss
|
*.tss
|
||||||
*.VC.db
|
*.VC.db
|
||||||
.vs/
|
.vs/
|
||||||
|
UpgradeLog.htm
|
||||||
|
|
||||||
#Ignore default Visual Studio build folders
|
#Ignore default Visual Studio build folders
|
||||||
[Dd]ebug/
|
[Dd]ebug/
|
||||||
|
@ -223,8 +224,8 @@ ScummVM.includes
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
#Ignore MS Visual C++ temporary files/subdirectories (except create_project.bat)
|
#Ignore MS Visual C++ temporary files/subdirectories (except create_project.bat)
|
||||||
dists/msvc*/**
|
dists/msvc/**
|
||||||
!dists/msvc*/create_project.bat
|
!dists/msvc/create_project.bat
|
||||||
|
|
||||||
#Ignore bison debug output
|
#Ignore bison debug output
|
||||||
*.output
|
*.output
|
||||||
|
|
|
@ -19,10 +19,12 @@
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<PlatformToolset Condition="'$(VisualStudioVersion)' != '10.0'">$(DefaultPlatformToolset)</PlatformToolset>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
<PlatformToolset Condition="'$(VisualStudioVersion)' != '10.0'">$(DefaultPlatformToolset)</PlatformToolset>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
@ -44,25 +46,23 @@
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||||
<DisableLanguageExtensions>false</DisableLanguageExtensions>
|
<DisableLanguageExtensions>false</DisableLanguageExtensions>
|
||||||
<DisableSpecificWarnings>4003;4512;4127;4100;4244</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4003;4512;4127;4100;4244</DisableSpecificWarnings>
|
||||||
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
<TargetMachine>MachineX86</TargetMachine>
|
||||||
|
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
||||||
</Link>
|
</Link>
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
<Command>@echo off
|
<Command>@echo off
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc\"</Command>
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
@ -74,6 +74,7 @@ xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<DisableSpecificWarnings>4003;4512;4127</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4003;4512;4127</DisableSpecificWarnings>
|
||||||
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
|
@ -84,10 +85,7 @@ xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
||||||
</Link>
|
</Link>
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
<Command>@echo off
|
<Command>@echo off
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc\"</Command>
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
<PreBuildEvent>
|
<PreBuildEvent>
|
||||||
<Command>
|
<Command>
|
||||||
|
@ -115,11 +113,13 @@ xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="..\scripts\installer.vbs" />
|
<None Include="..\scripts\installer.vbs" />
|
||||||
|
<None Include="..\scripts\install-natvis.bat" />
|
||||||
<None Include="..\scripts\postbuild.cmd" />
|
<None Include="..\scripts\postbuild.cmd" />
|
||||||
<None Include="..\scripts\prebuild.cmd" />
|
<None Include="..\scripts\prebuild.cmd" />
|
||||||
<None Include="..\scripts\revision.vbs" />
|
<None Include="..\scripts\revision.vbs" />
|
||||||
|
<None Include="..\scripts\scummvm.natvis" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
|
@ -73,10 +73,11 @@
|
||||||
<None Include="..\scripts\installer.vbs">
|
<None Include="..\scripts\installer.vbs">
|
||||||
<Filter>scripts</Filter>
|
<Filter>scripts</Filter>
|
||||||
</None>
|
</None>
|
||||||
</ItemGroup>
|
<None Include="..\scripts\install-natvis.bat">
|
||||||
<ItemGroup>
|
|
||||||
<Natvis Include="..\scripts\scummvm.natvis">
|
|
||||||
<Filter>scripts</Filter>
|
<Filter>scripts</Filter>
|
||||||
</Natvis>
|
</None>
|
||||||
|
<None Include="..\scripts\scummvm.natvis">
|
||||||
|
<Filter>scripts</Filter>
|
||||||
|
</None>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||||
# Visual Studio 2008
|
# Visual Studio 2008
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "create_project", "create_project.vcproj", "{CF177559-077D-4A08-AABE-BE0FD35F6C63}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "create_project", "create_project_2008.vcproj", "{CF177559-077D-4A08-AABE-BE0FD35F6C63}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
@ -82,6 +82,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
|
CommandLine="@echo off
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc\""
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
|
@ -154,6 +155,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
|
CommandLine="@echo off
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc\""
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
|
@ -234,7 +236,7 @@
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Scripts"
|
Name="Scripts"
|
||||||
Filter="vbs;cmd"
|
Filter="vbs;cmd;bat;natvis"
|
||||||
UniqueIdentifier="{45B110C8-4C64-4677-8ED6-F9A93C6D55A0}"
|
UniqueIdentifier="{45B110C8-4C64-4677-8ED6-F9A93C6D55A0}"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
|
@ -253,6 +255,14 @@
|
||||||
RelativePath="..\scripts\installer.vbs"
|
RelativePath="..\scripts\installer.vbs"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\scripts\scummvm.natvis"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\scripts\install-natvis.bat"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
|
@ -1,71 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Header Files">
|
|
||||||
<UniqueIdentifier>{2e3580c8-ec3a-4c81-8351-b668c668db2a}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Source Files">
|
|
||||||
<UniqueIdentifier>{31aaf58c-d3cb-4ed6-8eca-163b4a9b31a6}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="scripts">
|
|
||||||
<UniqueIdentifier>{f980f6fb-41b6-4161-b035-58b200c85cad}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\codeblocks.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\create_project.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\msvc.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\msbuild.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\visualstudio.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\xcode.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\config.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\codeblocks.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\create_project.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\msvc.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\msbuild.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\visualstudio.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\xcode.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\scripts\prebuild.cmd">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\scripts\revision.vbs">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\scripts\postbuild.cmd">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\scripts\installer.vbs">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
|
@ -1,20 +0,0 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
|
||||||
# Visual Studio 2012
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "create_project", "create_project.vcxproj", "{CF177559-077D-4A08-AABE-BE0FD35F6C63}"
|
|
||||||
EndProject
|
|
||||||
Global
|
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
||||||
Debug|Win32 = Debug|Win32
|
|
||||||
Release|Win32 = Release|Win32
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
|
||||||
HideSolutionNode = FALSE
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
|
|
@ -1,131 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{CF177559-077D-4A08-AABE-BE0FD35F6C63}</ProjectGuid>
|
|
||||||
<RootNamespace>create_project</RootNamespace>
|
|
||||||
<VCTargetsPath Condition="'$(VCTargetsPath11)' != '' and '$(VSVersion)' == '' and $(VisualStudioVersion) == ''">$(VCTargetsPath11)</VCTargetsPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<PlatformToolset>v110</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<PlatformToolset>v110</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup>
|
|
||||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)\</IntDir>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
|
||||||
<DisableLanguageExtensions>false</DisableLanguageExtensions>
|
|
||||||
<DisableSpecificWarnings>4003;4512;4127;4100;4244</DisableSpecificWarnings>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>@echo off
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc11\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<DisableSpecificWarnings>4003;4512;4127</DisableSpecificWarnings>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>@echo off
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc11\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
<PreBuildEvent>
|
|
||||||
<Command>
|
|
||||||
</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\cmake.cpp" />
|
|
||||||
<ClCompile Include="..\codeblocks.cpp" />
|
|
||||||
<ClCompile Include="..\create_project.cpp" />
|
|
||||||
<ClCompile Include="..\msbuild.cpp" />
|
|
||||||
<ClCompile Include="..\msvc.cpp" />
|
|
||||||
<ClCompile Include="..\visualstudio.cpp" />
|
|
||||||
<ClCompile Include="..\xcode.cpp" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\cmake.h" />
|
|
||||||
<ClInclude Include="..\codeblocks.h" />
|
|
||||||
<ClInclude Include="..\config.h" />
|
|
||||||
<ClInclude Include="..\create_project.h" />
|
|
||||||
<ClInclude Include="..\msbuild.h" />
|
|
||||||
<ClInclude Include="..\msvc.h" />
|
|
||||||
<ClInclude Include="..\visualstudio.h" />
|
|
||||||
<ClInclude Include="..\xcode.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\scripts\installer.vbs" />
|
|
||||||
<None Include="..\scripts\postbuild.cmd" />
|
|
||||||
<None Include="..\scripts\prebuild.cmd" />
|
|
||||||
<None Include="..\scripts\revision.vbs" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
|
@ -1,71 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Header Files">
|
|
||||||
<UniqueIdentifier>{2e3580c8-ec3a-4c81-8351-b668c668db2a}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Source Files">
|
|
||||||
<UniqueIdentifier>{31aaf58c-d3cb-4ed6-8eca-163b4a9b31a6}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="scripts">
|
|
||||||
<UniqueIdentifier>{f980f6fb-41b6-4161-b035-58b200c85cad}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\codeblocks.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\create_project.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\msvc.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\msbuild.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\visualstudio.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\xcode.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\config.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\codeblocks.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\create_project.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\msvc.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\msbuild.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\visualstudio.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\xcode.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\scripts\prebuild.cmd">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\scripts\revision.vbs">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\scripts\postbuild.cmd">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\scripts\installer.vbs">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
|
@ -1,20 +0,0 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
||||||
# Visual Studio 2013
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "create_project", "create_project.vcxproj", "{CF177559-077D-4A08-AABE-BE0FD35F6C63}"
|
|
||||||
EndProject
|
|
||||||
Global
|
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
||||||
Debug|Win32 = Debug|Win32
|
|
||||||
Release|Win32 = Release|Win32
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
|
||||||
HideSolutionNode = FALSE
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
|
|
@ -1,132 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{CF177559-077D-4A08-AABE-BE0FD35F6C63}</ProjectGuid>
|
|
||||||
<RootNamespace>create_project</RootNamespace>
|
|
||||||
<VCTargetsPath Condition="'$(VCTargetsPath11)' != '' and '$(VSVersion)' == '' and $(VisualStudioVersion) == ''">$(VCTargetsPath11)</VCTargetsPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<PlatformToolset>v120</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<PlatformToolset>v120</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)\</IntDir>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
|
||||||
<DisableLanguageExtensions>false</DisableLanguageExtensions>
|
|
||||||
<DisableSpecificWarnings>4003;4512;4127;4100;4244</DisableSpecificWarnings>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>@echo off
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc12\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc11\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<DisableSpecificWarnings>4003;4512;4127</DisableSpecificWarnings>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>@echo off
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc12\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc11\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
<PreBuildEvent>
|
|
||||||
<Command>
|
|
||||||
</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\cmake.cpp" />
|
|
||||||
<ClCompile Include="..\codeblocks.cpp" />
|
|
||||||
<ClCompile Include="..\create_project.cpp" />
|
|
||||||
<ClCompile Include="..\msbuild.cpp" />
|
|
||||||
<ClCompile Include="..\msvc.cpp" />
|
|
||||||
<ClCompile Include="..\visualstudio.cpp" />
|
|
||||||
<ClCompile Include="..\xcode.cpp" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\cmake.h" />
|
|
||||||
<ClInclude Include="..\codeblocks.h" />
|
|
||||||
<ClInclude Include="..\config.h" />
|
|
||||||
<ClInclude Include="..\create_project.h" />
|
|
||||||
<ClInclude Include="..\msbuild.h" />
|
|
||||||
<ClInclude Include="..\msvc.h" />
|
|
||||||
<ClInclude Include="..\visualstudio.h" />
|
|
||||||
<ClInclude Include="..\xcode.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\scripts\installer.vbs" />
|
|
||||||
<None Include="..\scripts\postbuild.cmd" />
|
|
||||||
<None Include="..\scripts\prebuild.cmd" />
|
|
||||||
<None Include="..\scripts\revision.vbs" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
|
@ -1,71 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Header Files">
|
|
||||||
<UniqueIdentifier>{2e3580c8-ec3a-4c81-8351-b668c668db2a}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Source Files">
|
|
||||||
<UniqueIdentifier>{31aaf58c-d3cb-4ed6-8eca-163b4a9b31a6}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="scripts">
|
|
||||||
<UniqueIdentifier>{f980f6fb-41b6-4161-b035-58b200c85cad}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\codeblocks.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\create_project.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\msvc.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\msbuild.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\visualstudio.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\xcode.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\config.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\codeblocks.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\create_project.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\msvc.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\msbuild.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\visualstudio.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\xcode.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\scripts\prebuild.cmd">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\scripts\revision.vbs">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\scripts\postbuild.cmd">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\scripts\installer.vbs">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
|
@ -1,28 +0,0 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
||||||
# Visual Studio 14
|
|
||||||
VisualStudioVersion = 14.0.22609.0
|
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "create_project", "create_project.vcxproj", "{CF177559-077D-4A08-AABE-BE0FD35F6C63}"
|
|
||||||
EndProject
|
|
||||||
Global
|
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
||||||
Debug|Win32 = Debug|Win32
|
|
||||||
Debug|x64 = Debug|x64
|
|
||||||
Release|Win32 = Release|Win32
|
|
||||||
Release|x64 = Release|x64
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Debug|x64.ActiveCfg = Debug|x64
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Debug|x64.Build.0 = Debug|x64
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Release|x64.ActiveCfg = Release|x64
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Release|x64.Build.0 = Release|x64
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
|
||||||
HideSolutionNode = FALSE
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
|
|
@ -1,221 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Debug|x64">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|x64">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{CF177559-077D-4A08-AABE-BE0FD35F6C63}</ProjectGuid>
|
|
||||||
<RootNamespace>create_project</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)\</IntDir>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
|
||||||
<DisableLanguageExtensions>false</DisableLanguageExtensions>
|
|
||||||
<DisableSpecificWarnings>4003;4512;4127;4100;4244</DisableSpecificWarnings>
|
|
||||||
<ExceptionHandling>Sync</ExceptionHandling>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>@echo off
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc14\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc12\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc11\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<DisableLanguageExtensions>false</DisableLanguageExtensions>
|
|
||||||
<DisableSpecificWarnings>4003;4512;4127</DisableSpecificWarnings>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>@echo off
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc14\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc12\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc11\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<DisableSpecificWarnings>4003;4512;4127</DisableSpecificWarnings>
|
|
||||||
<SDLCheck>true</SDLCheck>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>@echo off
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc14\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc12\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc11\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
<PreBuildEvent>
|
|
||||||
<Command>
|
|
||||||
</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<DisableSpecificWarnings>4003;4512;4127</DisableSpecificWarnings>
|
|
||||||
<SDLCheck>true</SDLCheck>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>@echo off
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc14\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc12\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc11\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
<PreBuildEvent>
|
|
||||||
<Command>
|
|
||||||
</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\cmake.cpp" />
|
|
||||||
<ClCompile Include="..\codeblocks.cpp" />
|
|
||||||
<ClCompile Include="..\create_project.cpp" />
|
|
||||||
<ClCompile Include="..\msbuild.cpp" />
|
|
||||||
<ClCompile Include="..\msvc.cpp" />
|
|
||||||
<ClCompile Include="..\visualstudio.cpp" />
|
|
||||||
<ClCompile Include="..\xcode.cpp" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\cmake.h" />
|
|
||||||
<ClInclude Include="..\codeblocks.h" />
|
|
||||||
<ClInclude Include="..\config.h" />
|
|
||||||
<ClInclude Include="..\create_project.h" />
|
|
||||||
<ClInclude Include="..\msbuild.h" />
|
|
||||||
<ClInclude Include="..\msvc.h" />
|
|
||||||
<ClInclude Include="..\visualstudio.h" />
|
|
||||||
<ClInclude Include="..\xcode.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\scripts\installer.vbs" />
|
|
||||||
<None Include="..\scripts\postbuild.cmd" />
|
|
||||||
<None Include="..\scripts\prebuild.cmd" />
|
|
||||||
<None Include="..\scripts\revision.vbs" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Natvis Include="..\scripts\scummvm.natvis" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
|
@ -1,76 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Header Files">
|
|
||||||
<UniqueIdentifier>{2e3580c8-ec3a-4c81-8351-b668c668db2a}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Source Files">
|
|
||||||
<UniqueIdentifier>{31aaf58c-d3cb-4ed6-8eca-163b4a9b31a6}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="scripts">
|
|
||||||
<UniqueIdentifier>{f980f6fb-41b6-4161-b035-58b200c85cad}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\codeblocks.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\create_project.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\msvc.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\msbuild.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\visualstudio.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\xcode.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\config.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\codeblocks.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\create_project.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\msvc.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\msbuild.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\visualstudio.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\xcode.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\scripts\prebuild.cmd">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\scripts\revision.vbs">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\scripts\postbuild.cmd">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\scripts\installer.vbs">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Natvis Include="..\scripts\scummvm.natvis">
|
|
||||||
<Filter>scripts</Filter>
|
|
||||||
</Natvis>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
|
@ -1,28 +0,0 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
||||||
# Visual Studio 14
|
|
||||||
VisualStudioVersion = 14.0.22609.0
|
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "create_project", "create_project.vcxproj", "{CF177559-077D-4A08-AABE-BE0FD35F6C63}"
|
|
||||||
EndProject
|
|
||||||
Global
|
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
||||||
Debug|Win32 = Debug|Win32
|
|
||||||
Debug|x64 = Debug|x64
|
|
||||||
Release|Win32 = Release|Win32
|
|
||||||
Release|x64 = Release|x64
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Debug|x64.ActiveCfg = Debug|x64
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Debug|x64.Build.0 = Debug|x64
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Release|x64.ActiveCfg = Release|x64
|
|
||||||
{CF177559-077D-4A08-AABE-BE0FD35F6C63}.Release|x64.Build.0 = Release|x64
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
|
||||||
HideSolutionNode = FALSE
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
|
|
@ -1,224 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Debug|x64">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|x64">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{CF177559-077D-4A08-AABE-BE0FD35F6C63}</ProjectGuid>
|
|
||||||
<RootNamespace>create_project</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<PlatformToolset>v141</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<PlatformToolset>v141</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<PlatformToolset>v141</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<PlatformToolset>v141</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)\</IntDir>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
|
||||||
<DisableLanguageExtensions>false</DisableLanguageExtensions>
|
|
||||||
<DisableSpecificWarnings>4003;4512;4127;4100;4244</DisableSpecificWarnings>
|
|
||||||
<ExceptionHandling>Sync</ExceptionHandling>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>@echo off
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc15\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc14\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc12\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc11\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<DisableLanguageExtensions>false</DisableLanguageExtensions>
|
|
||||||
<DisableSpecificWarnings>4003;4512;4127</DisableSpecificWarnings>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>@echo off
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc15\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc14\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc12\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc11\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<DisableSpecificWarnings>4003;4512;4127</DisableSpecificWarnings>
|
|
||||||
<SDLCheck>true</SDLCheck>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>@echo off
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc15\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc14\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc12\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc11\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
<PreBuildEvent>
|
|
||||||
<Command>
|
|
||||||
</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<DisableSpecificWarnings>4003;4512;4127</DisableSpecificWarnings>
|
|
||||||
<SDLCheck>true</SDLCheck>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>@echo off
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc15\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc14\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc12\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc11\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc10\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\msvc9\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\codeblocks\"
|
|
||||||
xcopy /Y "$(TargetPath)" "$(SolutionDir)\..\..\..\dists\iphone\"</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
<PreBuildEvent>
|
|
||||||
<Command>
|
|
||||||
</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\cmake.cpp" />
|
|
||||||
<ClCompile Include="..\codeblocks.cpp" />
|
|
||||||
<ClCompile Include="..\create_project.cpp" />
|
|
||||||
<ClCompile Include="..\msbuild.cpp" />
|
|
||||||
<ClCompile Include="..\msvc.cpp" />
|
|
||||||
<ClCompile Include="..\visualstudio.cpp" />
|
|
||||||
<ClCompile Include="..\xcode.cpp" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\cmake.h" />
|
|
||||||
<ClInclude Include="..\codeblocks.h" />
|
|
||||||
<ClInclude Include="..\config.h" />
|
|
||||||
<ClInclude Include="..\create_project.h" />
|
|
||||||
<ClInclude Include="..\msbuild.h" />
|
|
||||||
<ClInclude Include="..\msvc.h" />
|
|
||||||
<ClInclude Include="..\visualstudio.h" />
|
|
||||||
<ClInclude Include="..\xcode.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\scripts\installer.vbs" />
|
|
||||||
<None Include="..\scripts\postbuild.cmd" />
|
|
||||||
<None Include="..\scripts\prebuild.cmd" />
|
|
||||||
<None Include="..\scripts\revision.vbs" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Natvis Include="..\scripts\scummvm.natvis" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
|
@ -1,7 +1,7 @@
|
||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
echo.
|
echo.
|
||||||
echo Automatic creation of the MSVC15 project files
|
echo Automatic creation of the MSVC project files
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
if "%~1"=="/stable" goto stable
|
if "%~1"=="/stable" goto stable
|
||||||
|
@ -55,28 +55,28 @@ goto done
|
||||||
echo.
|
echo.
|
||||||
echo Creating project files with all engines enabled (stable and unstable)
|
echo Creating project files with all engines enabled (stable and unstable)
|
||||||
echo.
|
echo.
|
||||||
create_project ..\.. --enable-all-engines --disable-fluidsynth --msvc --msvc-version 15 --build-events
|
create_project ..\.. --enable-all-engines --disable-fluidsynth --msvc --build-events
|
||||||
goto done
|
goto done
|
||||||
|
|
||||||
:stable
|
:stable
|
||||||
echo.
|
echo.
|
||||||
echo Creating normal project files, with only the stable engines enabled
|
echo Creating normal project files, with only the stable engines enabled
|
||||||
echo.
|
echo.
|
||||||
create_project ..\.. --disable-fluidsynth --msvc --msvc-version 15
|
create_project ..\.. --disable-fluidsynth --msvc
|
||||||
goto done
|
goto done
|
||||||
|
|
||||||
:tools
|
:tools
|
||||||
echo.
|
echo.
|
||||||
echo Creating tools project files
|
echo Creating tools project files
|
||||||
echo.
|
echo.
|
||||||
create_project ..\.. --tools --msvc --msvc-version 15
|
create_project ..\.. --tools --msvc
|
||||||
goto done
|
goto done
|
||||||
|
|
||||||
:tests
|
:tests
|
||||||
echo.
|
echo.
|
||||||
echo Creating tests project files
|
echo Creating tests project files
|
||||||
echo.
|
echo.
|
||||||
create_project ..\.. --tests --msvc --msvc-version 15
|
create_project ..\.. --tests --msvc
|
||||||
goto done
|
goto done
|
||||||
|
|
||||||
:clean_check
|
:clean_check
|
||||||
|
@ -92,6 +92,8 @@ goto clean_check
|
||||||
:clean
|
:clean
|
||||||
echo.
|
echo.
|
||||||
echo Removing all project files
|
echo Removing all project files
|
||||||
|
del /Q *.vcproj* > NUL 2>&1
|
||||||
|
del /Q *.vsprops > NUL 2>&1
|
||||||
del /Q *.vcxproj* > NUL 2>&1
|
del /Q *.vcxproj* > NUL 2>&1
|
||||||
del /Q *.props > NUL 2>&1
|
del /Q *.props > NUL 2>&1
|
||||||
del /Q *.sln* > NUL 2>&1
|
del /Q *.sln* > NUL 2>&1
|
|
@ -2,8 +2,8 @@ The Visual Studio project files can now be created automatically from the GCC
|
||||||
files using the create_project tool inside the /devtools/create_project folder.
|
files using the create_project tool inside the /devtools/create_project folder.
|
||||||
|
|
||||||
To create the default project files, build create_project.exe, copy it inside
|
To create the default project files, build create_project.exe, copy it inside
|
||||||
this folder and run the create_msvc11.bat file for a default build. You can run
|
this folder and run the create_msvc.bat file for a default build. You can run
|
||||||
create_project.exe with no parameters to check the possible command-line options.
|
create_project.exe with no parameters to check the possible command-line options.
|
||||||
|
|
||||||
To enable debug visualization for common types, see the comment in
|
To enable debug visualization for common types in Visual Studio 2012 and 2013,
|
||||||
/devtools/create_project/scripts/scummvm.natvis.
|
run /devtools/create_project/scripts/install_natvis.bat.
|
|
@ -1,105 +0,0 @@
|
||||||
@echo off
|
|
||||||
|
|
||||||
echo.
|
|
||||||
echo Automatic creation of the MSVC10 project files
|
|
||||||
echo.
|
|
||||||
|
|
||||||
if "%~1"=="/stable" goto stable
|
|
||||||
if "%~1"=="/STABLE" goto stable
|
|
||||||
if "%~1"=="/all" goto all
|
|
||||||
if "%~1"=="/ALL" goto all
|
|
||||||
if "%~1"=="/tools" goto tools
|
|
||||||
if "%~1"=="/TOOLS" goto tools
|
|
||||||
if "%~1"=="/tests" goto tests
|
|
||||||
if "%~1"=="/TESTS" goto tests
|
|
||||||
if "%~1"=="/clean" goto clean_check
|
|
||||||
if "%~1"=="/CLEAN" goto clean_check
|
|
||||||
if "%~1"=="/help" goto command_help
|
|
||||||
if "%~1"=="/HELP" goto command_help
|
|
||||||
if "%~1"=="/?" goto command_help
|
|
||||||
|
|
||||||
if "%~1"=="" goto check_tool
|
|
||||||
|
|
||||||
echo Invalid command parameter: %~1
|
|
||||||
echo.
|
|
||||||
|
|
||||||
:command_help
|
|
||||||
echo Valid command parameters are:
|
|
||||||
echo stable Generated stable engines project files
|
|
||||||
echo all Generate all engines project files
|
|
||||||
echo tools Generate project files for the devtools
|
|
||||||
echo clean Clean generated project files
|
|
||||||
echo help Show help message
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:check_tool
|
|
||||||
if not exist create_project.exe goto no_tool
|
|
||||||
|
|
||||||
:question
|
|
||||||
echo.
|
|
||||||
set batchanswer=S
|
|
||||||
set /p batchanswer="Enable stable engines only, or all engines? (S/a)"
|
|
||||||
if "%batchanswer%"=="s" goto stable
|
|
||||||
if "%batchanswer%"=="S" goto stable
|
|
||||||
if "%batchanswer%"=="a" goto all
|
|
||||||
if "%batchanswer%"=="A" goto all
|
|
||||||
goto question
|
|
||||||
|
|
||||||
:no_tool
|
|
||||||
echo create_project.exe not found in the current folder.
|
|
||||||
echo You need to build it first and copy it in this
|
|
||||||
echo folder
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:all
|
|
||||||
echo.
|
|
||||||
echo Creating project files with all engines enabled (stable and unstable)
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --enable-all-engines --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 10 --build-events
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:stable
|
|
||||||
echo.
|
|
||||||
echo Creating normal project files, with only the stable engines enabled
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 10
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:tools
|
|
||||||
echo.
|
|
||||||
echo Creating tools project files
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --tools --msvc --msvc-version 10
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:tests
|
|
||||||
echo.
|
|
||||||
echo Creating tests project files
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --tests --msvc --msvc-version 10
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:clean_check
|
|
||||||
echo.
|
|
||||||
set cleananswer=N
|
|
||||||
set /p cleananswer="This will remove all project files. Are you sure you want to continue? (N/y)"
|
|
||||||
if "%cleananswer%"=="n" goto done
|
|
||||||
if "%cleananswer%"=="N" goto done
|
|
||||||
if "%cleananswer%"=="y" goto clean
|
|
||||||
if "%cleananswer%"=="Y" goto clean
|
|
||||||
goto clean_check
|
|
||||||
|
|
||||||
:clean
|
|
||||||
echo.
|
|
||||||
echo Removing all project files
|
|
||||||
del /Q *.vcxproj* > NUL 2>&1
|
|
||||||
del /Q *.props > NUL 2>&1
|
|
||||||
del /Q *.sln* > NUL 2>&1
|
|
||||||
del /Q scummvm* > NUL 2>&1
|
|
||||||
del /Q devtools* > NUL 2>&1
|
|
||||||
del /Q test_runner.cpp > NUL 2>&1
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:done
|
|
||||||
echo.
|
|
||||||
pause
|
|
|
@ -1,6 +0,0 @@
|
||||||
The Visual Studio project files can now be created automatically from the GCC
|
|
||||||
files using the create_project tool inside the /devtools/create_project folder.
|
|
||||||
|
|
||||||
To create the default project files, build create_project.exe, copy it inside
|
|
||||||
this folder and run the create_msvc10.bat file for a default build. You can run
|
|
||||||
create_project.exe with no parameters to check the possible command-line options
|
|
|
@ -1,105 +0,0 @@
|
||||||
@echo off
|
|
||||||
|
|
||||||
echo.
|
|
||||||
echo Automatic creation of the MSVC11 project files
|
|
||||||
echo.
|
|
||||||
|
|
||||||
if "%~1"=="/stable" goto stable
|
|
||||||
if "%~1"=="/STABLE" goto stable
|
|
||||||
if "%~1"=="/all" goto all
|
|
||||||
if "%~1"=="/ALL" goto all
|
|
||||||
if "%~1"=="/tools" goto tools
|
|
||||||
if "%~1"=="/TOOLS" goto tools
|
|
||||||
if "%~1"=="/tests" goto tests
|
|
||||||
if "%~1"=="/TESTS" goto tests
|
|
||||||
if "%~1"=="/clean" goto clean_check
|
|
||||||
if "%~1"=="/CLEAN" goto clean_check
|
|
||||||
if "%~1"=="/help" goto command_help
|
|
||||||
if "%~1"=="/HELP" goto command_help
|
|
||||||
if "%~1"=="/?" goto command_help
|
|
||||||
|
|
||||||
if "%~1"=="" goto check_tool
|
|
||||||
|
|
||||||
echo Invalid command parameter: %~1
|
|
||||||
echo.
|
|
||||||
|
|
||||||
:command_help
|
|
||||||
echo Valid command parameters are:
|
|
||||||
echo stable Generated stable engines project files
|
|
||||||
echo all Generate all engines project files
|
|
||||||
echo tools Generate project files for the devtools
|
|
||||||
echo clean Clean generated project files
|
|
||||||
echo help Show help message
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:check_tool
|
|
||||||
if not exist create_project.exe goto no_tool
|
|
||||||
|
|
||||||
:question
|
|
||||||
echo.
|
|
||||||
set batchanswer=S
|
|
||||||
set /p batchanswer="Enable stable engines only, or all engines? (S/a)"
|
|
||||||
if "%batchanswer%"=="s" goto stable
|
|
||||||
if "%batchanswer%"=="S" goto stable
|
|
||||||
if "%batchanswer%"=="a" goto all
|
|
||||||
if "%batchanswer%"=="A" goto all
|
|
||||||
goto question
|
|
||||||
|
|
||||||
:no_tool
|
|
||||||
echo create_project.exe not found in the current folder.
|
|
||||||
echo You need to build it first and copy it in this
|
|
||||||
echo folder
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:all
|
|
||||||
echo.
|
|
||||||
echo Creating project files with all engines enabled (stable and unstable)
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --enable-all-engines --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 11 --build-events
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:stable
|
|
||||||
echo.
|
|
||||||
echo Creating normal project files, with only the stable engines enabled
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 11
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:tools
|
|
||||||
echo.
|
|
||||||
echo Creating tools project files
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --tools --msvc --msvc-version 11
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:tests
|
|
||||||
echo.
|
|
||||||
echo Creating tests project files
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --tests --msvc --msvc-version 11
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:clean_check
|
|
||||||
echo.
|
|
||||||
set cleananswer=N
|
|
||||||
set /p cleananswer="This will remove all project files. Are you sure you want to continue? (N/y)"
|
|
||||||
if "%cleananswer%"=="n" goto done
|
|
||||||
if "%cleananswer%"=="N" goto done
|
|
||||||
if "%cleananswer%"=="y" goto clean
|
|
||||||
if "%cleananswer%"=="Y" goto clean
|
|
||||||
goto clean_check
|
|
||||||
|
|
||||||
:clean
|
|
||||||
echo.
|
|
||||||
echo Removing all project files
|
|
||||||
del /Q *.vcxproj* > NUL 2>&1
|
|
||||||
del /Q *.props > NUL 2>&1
|
|
||||||
del /Q *.sln* > NUL 2>&1
|
|
||||||
del /Q scummvm* > NUL 2>&1
|
|
||||||
del /Q devtools* > NUL 2>&1
|
|
||||||
del /Q test_runner.cpp > NUL 2>&1
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:done
|
|
||||||
echo.
|
|
||||||
pause
|
|
|
@ -1,105 +0,0 @@
|
||||||
@echo off
|
|
||||||
|
|
||||||
echo.
|
|
||||||
echo Automatic creation of the MSVC12 project files
|
|
||||||
echo.
|
|
||||||
|
|
||||||
if "%~1"=="/stable" goto stable
|
|
||||||
if "%~1"=="/STABLE" goto stable
|
|
||||||
if "%~1"=="/all" goto all
|
|
||||||
if "%~1"=="/ALL" goto all
|
|
||||||
if "%~1"=="/tools" goto tools
|
|
||||||
if "%~1"=="/TOOLS" goto tools
|
|
||||||
if "%~1"=="/tests" goto tests
|
|
||||||
if "%~1"=="/TESTS" goto tests
|
|
||||||
if "%~1"=="/clean" goto clean_check
|
|
||||||
if "%~1"=="/CLEAN" goto clean_check
|
|
||||||
if "%~1"=="/help" goto command_help
|
|
||||||
if "%~1"=="/HELP" goto command_help
|
|
||||||
if "%~1"=="/?" goto command_help
|
|
||||||
|
|
||||||
if "%~1"=="" goto check_tool
|
|
||||||
|
|
||||||
echo Invalid command parameter: %~1
|
|
||||||
echo.
|
|
||||||
|
|
||||||
:command_help
|
|
||||||
echo Valid command parameters are:
|
|
||||||
echo stable Generated stable engines project files
|
|
||||||
echo all Generate all engines project files
|
|
||||||
echo tools Generate project files for the devtools
|
|
||||||
echo clean Clean generated project files
|
|
||||||
echo help Show help message
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:check_tool
|
|
||||||
if not exist create_project.exe goto no_tool
|
|
||||||
|
|
||||||
:question
|
|
||||||
echo.
|
|
||||||
set batchanswer=S
|
|
||||||
set /p batchanswer="Enable stable engines only, or all engines? (S/a)"
|
|
||||||
if "%batchanswer%"=="s" goto stable
|
|
||||||
if "%batchanswer%"=="S" goto stable
|
|
||||||
if "%batchanswer%"=="a" goto all
|
|
||||||
if "%batchanswer%"=="A" goto all
|
|
||||||
goto question
|
|
||||||
|
|
||||||
:no_tool
|
|
||||||
echo create_project.exe not found in the current folder.
|
|
||||||
echo You need to build it first and copy it in this
|
|
||||||
echo folder
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:all
|
|
||||||
echo.
|
|
||||||
echo Creating project files with all engines enabled (stable and unstable)
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --enable-all-engines --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 12 --build-events
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:stable
|
|
||||||
echo.
|
|
||||||
echo Creating normal project files, with only the stable engines enabled
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 12
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:tools
|
|
||||||
echo.
|
|
||||||
echo Creating tools project files
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --tools --msvc --msvc-version 12
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:tests
|
|
||||||
echo.
|
|
||||||
echo Creating tests project files
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --tests --msvc --msvc-version 12
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:clean_check
|
|
||||||
echo.
|
|
||||||
set cleananswer=N
|
|
||||||
set /p cleananswer="This will remove all project files. Are you sure you want to continue? (N/y)"
|
|
||||||
if "%cleananswer%"=="n" goto done
|
|
||||||
if "%cleananswer%"=="N" goto done
|
|
||||||
if "%cleananswer%"=="y" goto clean
|
|
||||||
if "%cleananswer%"=="Y" goto clean
|
|
||||||
goto clean_check
|
|
||||||
|
|
||||||
:clean
|
|
||||||
echo.
|
|
||||||
echo Removing all project files
|
|
||||||
del /Q *.vcxproj* > NUL 2>&1
|
|
||||||
del /Q *.props > NUL 2>&1
|
|
||||||
del /Q *.sln* > NUL 2>&1
|
|
||||||
del /Q scummvm* > NUL 2>&1
|
|
||||||
del /Q devtools* > NUL 2>&1
|
|
||||||
del /Q test_runner.cpp > NUL 2>&1
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:done
|
|
||||||
echo.
|
|
||||||
pause
|
|
|
@ -1,9 +0,0 @@
|
||||||
The Visual Studio project files can now be created automatically from the GCC
|
|
||||||
files using the create_project tool inside the /devtools/create_project folder.
|
|
||||||
|
|
||||||
To create the default project files, build create_project.exe, copy it inside
|
|
||||||
this folder and run the create_msvc12.bat file for a default build. You can run
|
|
||||||
create_project.exe with no parameters to check the possible command-line options.
|
|
||||||
|
|
||||||
To enable debug visualization for common types, see the comment in
|
|
||||||
/devtools/create_project/scripts/scummvm.natvis.
|
|
|
@ -1,105 +0,0 @@
|
||||||
@echo off
|
|
||||||
|
|
||||||
echo.
|
|
||||||
echo Automatic creation of the MSVC14 project files
|
|
||||||
echo.
|
|
||||||
|
|
||||||
if "%~1"=="/stable" goto stable
|
|
||||||
if "%~1"=="/STABLE" goto stable
|
|
||||||
if "%~1"=="/all" goto all
|
|
||||||
if "%~1"=="/ALL" goto all
|
|
||||||
if "%~1"=="/tools" goto tools
|
|
||||||
if "%~1"=="/TOOLS" goto tools
|
|
||||||
if "%~1"=="/tests" goto tests
|
|
||||||
if "%~1"=="/TESTS" goto tests
|
|
||||||
if "%~1"=="/clean" goto clean_check
|
|
||||||
if "%~1"=="/CLEAN" goto clean_check
|
|
||||||
if "%~1"=="/help" goto command_help
|
|
||||||
if "%~1"=="/HELP" goto command_help
|
|
||||||
if "%~1"=="/?" goto command_help
|
|
||||||
|
|
||||||
if "%~1"=="" goto check_tool
|
|
||||||
|
|
||||||
echo Invalid command parameter: %~1
|
|
||||||
echo.
|
|
||||||
|
|
||||||
:command_help
|
|
||||||
echo Valid command parameters are:
|
|
||||||
echo stable Generated stable engines project files
|
|
||||||
echo all Generate all engines project files
|
|
||||||
echo tools Generate project files for the devtools
|
|
||||||
echo clean Clean generated project files
|
|
||||||
echo help Show help message
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:check_tool
|
|
||||||
if not exist create_project.exe goto no_tool
|
|
||||||
|
|
||||||
:question
|
|
||||||
echo.
|
|
||||||
set batchanswer=S
|
|
||||||
set /p batchanswer="Enable stable engines only, or all engines? (S/a)"
|
|
||||||
if "%batchanswer%"=="s" goto stable
|
|
||||||
if "%batchanswer%"=="S" goto stable
|
|
||||||
if "%batchanswer%"=="a" goto all
|
|
||||||
if "%batchanswer%"=="A" goto all
|
|
||||||
goto question
|
|
||||||
|
|
||||||
:no_tool
|
|
||||||
echo create_project.exe not found in the current folder.
|
|
||||||
echo You need to build it first and copy it in this
|
|
||||||
echo folder
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:all
|
|
||||||
echo.
|
|
||||||
echo Creating project files with all engines enabled (stable and unstable)
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --enable-all-engines --disable-fluidsynth --msvc --msvc-version 14 --build-events
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:stable
|
|
||||||
echo.
|
|
||||||
echo Creating normal project files, with only the stable engines enabled
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --disable-fluidsynth --msvc --msvc-version 14
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:tools
|
|
||||||
echo.
|
|
||||||
echo Creating tools project files
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --tools --msvc --msvc-version 14
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:tests
|
|
||||||
echo.
|
|
||||||
echo Creating tests project files
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --tests --msvc --msvc-version 14
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:clean_check
|
|
||||||
echo.
|
|
||||||
set cleananswer=N
|
|
||||||
set /p cleananswer="This will remove all project files. Are you sure you want to continue? (N/y)"
|
|
||||||
if "%cleananswer%"=="n" goto done
|
|
||||||
if "%cleananswer%"=="N" goto done
|
|
||||||
if "%cleananswer%"=="y" goto clean
|
|
||||||
if "%cleananswer%"=="Y" goto clean
|
|
||||||
goto clean_check
|
|
||||||
|
|
||||||
:clean
|
|
||||||
echo.
|
|
||||||
echo Removing all project files
|
|
||||||
del /Q *.vcxproj* > NUL 2>&1
|
|
||||||
del /Q *.props > NUL 2>&1
|
|
||||||
del /Q *.sln* > NUL 2>&1
|
|
||||||
del /Q scummvm* > NUL 2>&1
|
|
||||||
del /Q devtools* > NUL 2>&1
|
|
||||||
del /Q test_runner.cpp > NUL 2>&1
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:done
|
|
||||||
echo.
|
|
||||||
pause
|
|
|
@ -1,6 +0,0 @@
|
||||||
The Visual Studio project files can now be created automatically from the GCC
|
|
||||||
files using the create_project tool inside the /devtools/create_project folder.
|
|
||||||
|
|
||||||
To create the default project files, build create_project.exe, copy it inside
|
|
||||||
this folder and run the create_msvc14.bat file for a default build. You can run
|
|
||||||
create_project.exe with no parameters to check the possible command-line options.
|
|
|
@ -1,6 +0,0 @@
|
||||||
The Visual Studio project files can now be created automatically from the GCC
|
|
||||||
files using the create_project tool inside the /devtools/create_project folder.
|
|
||||||
|
|
||||||
To create the default project files, build create_project.exe, copy it inside
|
|
||||||
this folder and run the create_msvc15.bat file for a default build. You can run
|
|
||||||
create_project.exe with no parameters to check the possible command-line options.
|
|
|
@ -1,105 +0,0 @@
|
||||||
@echo off
|
|
||||||
|
|
||||||
echo.
|
|
||||||
echo Automatic creation of the MSVC9 project files
|
|
||||||
echo.
|
|
||||||
|
|
||||||
if "%~1"=="/stable" goto stable
|
|
||||||
if "%~1"=="/STABLE" goto stable
|
|
||||||
if "%~1"=="/all" goto all
|
|
||||||
if "%~1"=="/ALL" goto all
|
|
||||||
if "%~1"=="/tools" goto tools
|
|
||||||
if "%~1"=="/TOOLS" goto tools
|
|
||||||
if "%~1"=="/tests" goto tests
|
|
||||||
if "%~1"=="/TESTS" goto tests
|
|
||||||
if "%~1"=="/clean" goto clean_check
|
|
||||||
if "%~1"=="/CLEAN" goto clean_check
|
|
||||||
if "%~1"=="/help" goto command_help
|
|
||||||
if "%~1"=="/HELP" goto command_help
|
|
||||||
if "%~1"=="/?" goto command_help
|
|
||||||
|
|
||||||
if "%~1"=="" goto check_tool
|
|
||||||
|
|
||||||
echo Invalid command parameter: %~1
|
|
||||||
echo.
|
|
||||||
|
|
||||||
:command_help
|
|
||||||
echo Valid command parameters are:
|
|
||||||
echo stable Generated stable engines project files
|
|
||||||
echo all Generate all engines project files
|
|
||||||
echo tools Generate project files for the devtools
|
|
||||||
echo clean Clean generated project files
|
|
||||||
echo help Show help message
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:check_tool
|
|
||||||
if not exist create_project.exe goto no_tool
|
|
||||||
|
|
||||||
:question
|
|
||||||
echo.
|
|
||||||
set batchanswer=S
|
|
||||||
set /p batchanswer="Enable stable engines only, or all engines? (S/a)"
|
|
||||||
if "%batchanswer%"=="s" goto stable
|
|
||||||
if "%batchanswer%"=="S" goto stable
|
|
||||||
if "%batchanswer%"=="a" goto all
|
|
||||||
if "%batchanswer%"=="A" goto all
|
|
||||||
goto question
|
|
||||||
|
|
||||||
:no_tool
|
|
||||||
echo create_project.exe not found in the current folder.
|
|
||||||
echo You need to build it first and copy it in this
|
|
||||||
echo folder
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:all
|
|
||||||
echo.
|
|
||||||
echo Creating project files with all engines enabled (stable and unstable)
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --enable-all-engines --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 9
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:stable
|
|
||||||
echo.
|
|
||||||
echo Creating normal project files, with only the stable engines enabled
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --disable-fluidsynth --disable-sdlnet --disable-libcurl --disable-updates --msvc --msvc-version 9
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:tools
|
|
||||||
echo.
|
|
||||||
echo Creating tools project files
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --tools --msvc --msvc-version 9
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:tests
|
|
||||||
echo.
|
|
||||||
echo Creating tests project files
|
|
||||||
echo.
|
|
||||||
create_project ..\.. --tests --msvc --msvc-version 9
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:clean_check
|
|
||||||
echo.
|
|
||||||
set cleananswer=N
|
|
||||||
set /p cleananswer="This will remove all project files. Are you sure you want to continue? (N/y)"
|
|
||||||
if "%cleananswer%"=="n" goto done
|
|
||||||
if "%cleananswer%"=="N" goto done
|
|
||||||
if "%cleananswer%"=="y" goto clean
|
|
||||||
if "%cleananswer%"=="Y" goto clean
|
|
||||||
goto clean_check
|
|
||||||
|
|
||||||
:clean
|
|
||||||
echo.
|
|
||||||
echo Removing all project files
|
|
||||||
del /Q *.vcproj* > NUL 2>&1
|
|
||||||
del /Q *.vsprops > NUL 2>&1
|
|
||||||
del /Q *.sln* > NUL 2>&1
|
|
||||||
del /Q scummvm* > NUL 2>&1
|
|
||||||
del /Q devtools* > NUL 2>&1
|
|
||||||
del /Q test_runner.cpp
|
|
||||||
goto done
|
|
||||||
|
|
||||||
:done
|
|
||||||
echo.
|
|
||||||
pause
|
|
|
@ -1,6 +0,0 @@
|
||||||
The Visual Studio project files can now be created automatically from the GCC
|
|
||||||
files using the create_project tool inside the /devtools/create_project folder.
|
|
||||||
|
|
||||||
To create the default project files, build create_project.exe, copy it inside
|
|
||||||
this folder and run the create_msvc9.bat file for a default build. You can run
|
|
||||||
create_project.exe with no parameters to check the possible command-line options
|
|
14
ports.mk
14
ports.mk
|
@ -460,18 +460,8 @@ else ifeq "$(CUR_BRANCH)" ""
|
||||||
endif
|
endif
|
||||||
@echo Creating Code::Blocks project files...
|
@echo Creating Code::Blocks project files...
|
||||||
@cd $(srcdir)/dists/codeblocks && ../../devtools/create_project/create_project ../.. --codeblocks >/dev/null && git add -f engines/plugins_table.h *.workspace *.cbp
|
@cd $(srcdir)/dists/codeblocks && ../../devtools/create_project/create_project ../.. --codeblocks >/dev/null && git add -f engines/plugins_table.h *.workspace *.cbp
|
||||||
@echo Creating MSVC9 project files...
|
@echo Creating MSVC project files...
|
||||||
@cd $(srcdir)/dists/msvc9 && ../../devtools/create_project/create_project ../.. --msvc --msvc-version 9 >/dev/null && git add -f engines/plugins_table.h *.sln *.vcproj *.vsprops
|
@cd $(srcdir)/dists/msvc && ../../devtools/create_project/create_project ../.. --msvc >/dev/null && git add -f engines/plugins_table.h *.sln *.vcxproj *.vcxproj.filters *.props
|
||||||
@echo Creating MSVC10 project files...
|
|
||||||
@cd $(srcdir)/dists/msvc10 && ../../devtools/create_project/create_project ../.. --msvc --msvc-version 10 >/dev/null && git add -f engines/plugins_table.h *.sln *.vcxproj *.vcxproj.filters *.props
|
|
||||||
@echo Creating MSVC11 project files...
|
|
||||||
@cd $(srcdir)/dists/msvc11 && ../../devtools/create_project/create_project ../.. --msvc --msvc-version 11 >/dev/null && git add -f engines/plugins_table.h *.sln *.vcxproj *.vcxproj.filters *.props
|
|
||||||
@echo Creating MSVC12 project files...
|
|
||||||
@cd $(srcdir)/dists/msvc12 && ../../devtools/create_project/create_project ../.. --msvc --msvc-version 12 >/dev/null && git add -f engines/plugins_table.h *.sln *.vcxproj *.vcxproj.filters *.props
|
|
||||||
@echo Creating MSVC14 project files...
|
|
||||||
@cd $(srcdir)/dists/msvc14 && ../../devtools/create_project/create_project ../.. --msvc --msvc-version 14 >/dev/null && git add -f engines/plugins_table.h *.sln *.vcxproj *.vcxproj.filters *.props
|
|
||||||
@echo Creating MSVC15 project files...
|
|
||||||
@cd $(srcdir)/dists/msvc15 && ../../devtools/create_project/create_project ../.. --msvc --msvc-version 15 >/dev/null && git add -f engines/plugins_table.h *.sln *.vcxproj *.vcxproj.filters *.props
|
|
||||||
@echo
|
@echo
|
||||||
@echo All is done.
|
@echo All is done.
|
||||||
@echo Now run
|
@echo Now run
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue