diff options
author | Julien | 2011-06-01 17:34:32 -0400 |
---|---|---|
committer | Julien | 2011-06-01 17:34:32 -0400 |
commit | 9717d5be6f416a36dfb81e1c47c9cea518b5d018 (patch) | |
tree | 3feeb9cc9d59651086871d1fb4d1afdf1891fc31 /devtools/create_project/msvc10/create_project.vcxproj | |
parent | 9db33ea544afd2c24857b8229e97e532881383ca (diff) | |
download | scummvm-rg350-9717d5be6f416a36dfb81e1c47c9cea518b5d018.tar.gz scummvm-rg350-9717d5be6f416a36dfb81e1c47c9cea518b5d018.tar.bz2 scummvm-rg350-9717d5be6f416a36dfb81e1c47c9cea518b5d018.zip |
CREATE_PROJECT: Add stubs for Xcode provider
Diffstat (limited to 'devtools/create_project/msvc10/create_project.vcxproj')
-rw-r--r-- | devtools/create_project/msvc10/create_project.vcxproj | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/devtools/create_project/msvc10/create_project.vcxproj b/devtools/create_project/msvc10/create_project.vcxproj index bf5e415b5d..3d7f8fdd3d 100644 --- a/devtools/create_project/msvc10/create_project.vcxproj +++ b/devtools/create_project/msvc10/create_project.vcxproj @@ -58,10 +58,12 @@ <TargetMachine>MachineX86</TargetMachine> </Link> <PostBuildEvent> - <Command>xcopy /Y $(TargetPath) $(SolutionDir)\..\..\..\dists\msvc10\ + <Command>@echo off +xcopy /Y $(TargetPath) $(SolutionDir)\..\..\..\dists\msvc10\ xcopy /Y $(TargetPath) $(SolutionDir)\..\..\..\dists\msvc9\ xcopy /Y $(TargetPath) $(SolutionDir)\..\..\..\dists\msvc8\ -xcopy /Y $(TargetPath) $(SolutionDir)\..\..\..\dists\codeblocks\</Command> +xcopy /Y $(TargetPath) $(SolutionDir)\..\..\..\dists\codeblocks\ +xcopy /Y $(TargetPath) $(SolutionDir)\..\..\..\dists\iphone\</Command> </PostBuildEvent> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> @@ -98,6 +100,7 @@ xcopy /Y $(TargetPath) $(SolutionDir)\..\..\..\dists\codeblocks\</Command> <ClCompile Include="..\msbuild.cpp" /> <ClCompile Include="..\msvc.cpp" /> <ClCompile Include="..\visualstudio.cpp" /> + <ClCompile Include="..\xcode.cpp" /> </ItemGroup> <ItemGroup> <ClInclude Include="..\codeblocks.h" /> @@ -106,6 +109,7 @@ xcopy /Y $(TargetPath) $(SolutionDir)\..\..\..\dists\codeblocks\</Command> <ClInclude Include="..\msbuild.h" /> <ClInclude Include="..\msvc.h" /> <ClInclude Include="..\visualstudio.h" /> + <ClInclude Include="..\xcode.h" /> </ItemGroup> <ItemGroup> <None Include="..\scripts\installer.vbs" /> |