Mercurial > sdl-ios-xcode
annotate VisualC/SDLmain/SDLmain_VS2008.vcproj @ 5082:de59e0218aa2
Fixed bug #1011
Daniel Ellis 2010-06-25 15:20:31 PDT
SDL based applications sometimes display the wrong application name in the
Sound Preferences dialog when using pulseaudio.
I can see from the code that the SDL pulse module is initiating a new pulse
audio context and passing an application name using the function
get_progname().
The get_progname() function returns the name of the current process. However,
the process name is often not a suitable name to use. For example, the OpenShot
video editor is a python application, and so "python" is displayed in the Sound
Preferences window (see Bug #596504), when it should be displaying "OpenShot".
PulseAudio allows applications to specify the application name, either at the
time the context is created (as SDL does currently), or by special environment
variables (see http://www.pulseaudio.org/wiki/ApplicationProperties). If no
name is specified, then pulseaudio will determine the name based on the
process.
If you specify the application name when initiating the pulseaudio context,
then that will override any application name specified using an environment
variable.
As libsdl is a library, I believe the solution is for libsdl to not specify any
application name when initiating a pulseaudio context, which will enable
applications to specify the application name using environment variables. In
the case that the applications do not specify anything, pulseaudio will fall
back to using the process name anyway.
The attached patch removes the get_progname() function and passes NULL as the
application name when creating the pulseaudio context, which fixes the issue.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 23 Jan 2011 21:55:04 -0800 |
parents | e8916fe9cfc8 |
children | 16a326715f39 |
rev | line source |
---|---|
3254
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
1 <?xml version="1.0" encoding="Windows-1252"?> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
2 <VisualStudioProject |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
3 ProjectType="Visual C++" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
4 Version="9.00" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
5 Name="SDLmain" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
6 ProjectGUID="{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}" |
4968 | 7 RootNamespace="SDLmain" |
3254
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
8 TargetFrameworkVersion="131072" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
9 > |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
10 <Platforms> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
11 <Platform |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
12 Name="Win32" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
13 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
14 <Platform |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
15 Name="x64" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
16 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
17 </Platforms> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
18 <ToolFiles> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
19 </ToolFiles> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
20 <Configurations> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
21 <Configuration |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
22 Name="Release|Win32" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
23 OutputDirectory=".\Release" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
24 IntermediateDirectory=".\Release" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
25 ConfigurationType="4" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
26 InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
27 UseOfMFC="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
28 ATLMinimizesCRunTimeLibraryUsage="false" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
29 > |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
30 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
31 Name="VCPreBuildEventTool" |
3356 | 32 Description="Making sure basic SDL headers are in place..." |
5062 | 33 CommandLine="if exist "$(ProjectDir)\..\..\include\SDL_config.h" goto SDLCONFIGOKAY
echo Copying SDL_config_windows.h to SDL_config.h...
copy "$(ProjectDir)\..\..\include\SDL_config_windows.h" "$(ProjectDir)\..\..\include\SDL_config.h"
:SDLCONFIGOKAY

if exist "$(ProjectDir)\..\..\include\SDL_revision.h" goto SDLREVISIONOKAY
echo Creating stub SDL_revision.h file...
echo #define SDL_REVISION 0 >"$(ProjectDir)\..\..\include\SDL_revision.h"
:SDLREVISIONOKAY
" |
3254
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
34 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
35 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
36 Name="VCCustomBuildTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
37 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
38 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
39 Name="VCXMLDataGeneratorTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
40 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
41 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
42 Name="VCWebServiceProxyGeneratorTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
43 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
44 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
45 Name="VCMIDLTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
46 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
47 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
48 Name="VCCLCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
49 InlineFunctionExpansion="1" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
50 AdditionalIncludeDirectories="..\..\include,..\..\include\SDL" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
51 PreprocessorDefinitions="WIN32,NDEBUG,_WINDOWS" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
52 StringPooling="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
53 RuntimeLibrary="2" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
54 EnableFunctionLevelLinking="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
55 WarningLevel="3" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
56 SuppressStartupBanner="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
57 CompileAs="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
58 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
59 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
60 Name="VCManagedResourceCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
61 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
62 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
63 Name="VCResourceCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
64 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
65 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
66 Name="VCPreLinkEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
67 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
68 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
69 Name="VCLibrarianTool" |
4968 | 70 OutputFile="$(IntDir)\SDLmain.lib" |
3254
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
71 SuppressStartupBanner="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
72 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
73 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
74 Name="VCALinkTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
75 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
76 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
77 Name="VCXDCMakeTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
78 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
79 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
80 Name="VCBscMakeTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
81 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
82 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
83 Name="VCFxCopTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
84 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
85 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
86 Name="VCPostBuildEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
87 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
88 </Configuration> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
89 <Configuration |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
90 Name="Release|x64" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
91 OutputDirectory="$(PlatformName)\$(ConfigurationName)" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
92 IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
93 ConfigurationType="4" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
94 InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
95 UseOfMFC="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
96 ATLMinimizesCRunTimeLibraryUsage="false" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
97 > |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
98 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
99 Name="VCPreBuildEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
100 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
101 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
102 Name="VCCustomBuildTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
103 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
104 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
105 Name="VCXMLDataGeneratorTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
106 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
107 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
108 Name="VCWebServiceProxyGeneratorTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
109 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
110 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
111 Name="VCMIDLTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
112 TargetEnvironment="3" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
113 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
114 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
115 Name="VCCLCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
116 InlineFunctionExpansion="1" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
117 AdditionalIncludeDirectories="..\..\include,..\..\include\SDL" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
118 PreprocessorDefinitions="WIN32,NDEBUG,_WINDOWS" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
119 StringPooling="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
120 RuntimeLibrary="2" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
121 EnableFunctionLevelLinking="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
122 WarningLevel="3" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
123 SuppressStartupBanner="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
124 CompileAs="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
125 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
126 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
127 Name="VCManagedResourceCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
128 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
129 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
130 Name="VCResourceCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
131 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
132 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
133 Name="VCPreLinkEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
134 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
135 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
136 Name="VCLibrarianTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
137 OutputFile="$(IntDir)\SDLmain.lib" |
4968 | 138 SuppressStartupBanner="true" |
3254
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
139 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
140 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
141 Name="VCALinkTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
142 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
143 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
144 Name="VCXDCMakeTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
145 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
146 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
147 Name="VCBscMakeTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
148 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
149 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
150 Name="VCFxCopTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
151 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
152 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
153 Name="VCPostBuildEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
154 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
155 </Configuration> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
156 <Configuration |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
157 Name="Release_NoSTDIO|Win32" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
158 OutputDirectory=".\Release_NOSTDIO" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
159 IntermediateDirectory=".\Release_NOSTDIO" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
160 ConfigurationType="4" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
161 InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
162 UseOfMFC="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
163 ATLMinimizesCRunTimeLibraryUsage="false" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
164 > |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
165 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
166 Name="VCPreBuildEventTool" |
3356 | 167 Description="Making sure basic SDL headers are in place..." |
5062 | 168 CommandLine="if exist "$(ProjectDir)\..\..\include\SDL_config.h" goto SDLCONFIGOKAY
echo Copying SDL_config_windows.h to SDL_config.h...
copy "$(ProjectDir)\..\..\include\SDL_config_windows.h" "$(ProjectDir)\..\..\include\SDL_config.h"
:SDLCONFIGOKAY

if exist "$(ProjectDir)\..\..\include\SDL_revision.h" goto SDLREVISIONOKAY
echo Creating stub SDL_revision.h file...
echo #define SDL_REVISION 0 >"$(ProjectDir)\..\..\include\SDL_revision.h"
:SDLREVISIONOKAY
" |
3254
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
169 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
170 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
171 Name="VCCustomBuildTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
172 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
173 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
174 Name="VCXMLDataGeneratorTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
175 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
176 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
177 Name="VCWebServiceProxyGeneratorTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
178 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
179 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
180 Name="VCMIDLTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
181 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
182 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
183 Name="VCCLCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
184 InlineFunctionExpansion="1" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
185 AdditionalIncludeDirectories="..\..\include,..\..\include\SDL" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
186 PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32,NDEBUG,_WINDOWS,NO_STDIO_REDIRECT" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
187 StringPooling="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
188 RuntimeLibrary="2" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
189 EnableFunctionLevelLinking="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
190 WarningLevel="3" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
191 SuppressStartupBanner="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
192 CompileAs="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
193 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
194 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
195 Name="VCManagedResourceCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
196 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
197 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
198 Name="VCResourceCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
199 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
200 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
201 Name="VCPreLinkEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
202 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
203 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
204 Name="VCLibrarianTool" |
4968 | 205 OutputFile="$(IntDir)\SDLmain.lib" |
3254
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
206 SuppressStartupBanner="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
207 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
208 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
209 Name="VCALinkTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
210 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
211 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
212 Name="VCXDCMakeTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
213 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
214 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
215 Name="VCBscMakeTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
216 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
217 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
218 Name="VCFxCopTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
219 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
220 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
221 Name="VCPostBuildEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
222 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
223 </Configuration> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
224 <Configuration |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
225 Name="Release_NoSTDIO|x64" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
226 OutputDirectory="$(PlatformName)\$(ConfigurationName)" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
227 IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
228 ConfigurationType="4" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
229 InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
230 UseOfMFC="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
231 ATLMinimizesCRunTimeLibraryUsage="false" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
232 > |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
233 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
234 Name="VCPreBuildEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
235 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
236 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
237 Name="VCCustomBuildTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
238 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
239 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
240 Name="VCXMLDataGeneratorTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
241 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
242 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
243 Name="VCWebServiceProxyGeneratorTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
244 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
245 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
246 Name="VCMIDLTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
247 TargetEnvironment="3" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
248 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
249 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
250 Name="VCCLCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
251 InlineFunctionExpansion="1" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
252 AdditionalIncludeDirectories="..\..\include,..\..\include\SDL" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
253 PreprocessorDefinitions="WIN32,NDEBUG,_WINDOWS,NO_STDIO_REDIRECT" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
254 StringPooling="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
255 RuntimeLibrary="2" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
256 EnableFunctionLevelLinking="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
257 WarningLevel="3" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
258 SuppressStartupBanner="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
259 CompileAs="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
260 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
261 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
262 Name="VCManagedResourceCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
263 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
264 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
265 Name="VCResourceCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
266 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
267 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
268 Name="VCPreLinkEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
269 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
270 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
271 Name="VCLibrarianTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
272 OutputFile="$(IntDir)\SDLmain.lib" |
4968 | 273 SuppressStartupBanner="true" |
3254
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
274 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
275 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
276 Name="VCALinkTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
277 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
278 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
279 Name="VCXDCMakeTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
280 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
281 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
282 Name="VCBscMakeTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
283 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
284 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
285 Name="VCFxCopTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
286 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
287 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
288 Name="VCPostBuildEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
289 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
290 </Configuration> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
291 <Configuration |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
292 Name="Debug|Win32" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
293 OutputDirectory=".\Debug" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
294 IntermediateDirectory=".\Debug" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
295 ConfigurationType="4" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
296 InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
297 UseOfMFC="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
298 ATLMinimizesCRunTimeLibraryUsage="false" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
299 > |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
300 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
301 Name="VCPreBuildEventTool" |
3356 | 302 Description="Making sure basic SDL headers are in place..." |
5062 | 303 CommandLine="if exist "$(ProjectDir)\..\..\include\SDL_config.h" goto SDLCONFIGOKAY
echo Copying SDL_config_windows.h to SDL_config.h...
copy "$(ProjectDir)\..\..\include\SDL_config_windows.h" "$(ProjectDir)\..\..\include\SDL_config.h"
:SDLCONFIGOKAY

if exist "$(ProjectDir)\..\..\include\SDL_revision.h" goto SDLREVISIONOKAY
echo Creating stub SDL_revision.h file...
echo #define SDL_REVISION 0 >"$(ProjectDir)\..\..\include\SDL_revision.h"
:SDLREVISIONOKAY
" |
3254
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
304 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
305 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
306 Name="VCCustomBuildTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
307 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
308 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
309 Name="VCXMLDataGeneratorTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
310 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
311 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
312 Name="VCWebServiceProxyGeneratorTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
313 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
314 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
315 Name="VCMIDLTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
316 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
317 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
318 Name="VCCLCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
319 Optimization="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
320 AdditionalIncludeDirectories="..\..\include,..\..\include\SDL" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
321 PreprocessorDefinitions="WIN32,_DEBUG,_WINDOWS" |
5039
fc26fb7e20af
Use the debug C runtime for the debug configuration
Sam Lantinga <slouken@libsdl.org>
parents:
4968
diff
changeset
|
322 RuntimeLibrary="3" |
3254
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
323 WarningLevel="3" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
324 SuppressStartupBanner="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
325 DebugInformationFormat="1" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
326 CompileAs="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
327 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
328 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
329 Name="VCManagedResourceCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
330 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
331 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
332 Name="VCResourceCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
333 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
334 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
335 Name="VCPreLinkEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
336 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
337 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
338 Name="VCLibrarianTool" |
4968 | 339 OutputFile="$(IntDir)\SDLmain.lib" |
3254
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
340 SuppressStartupBanner="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
341 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
342 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
343 Name="VCALinkTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
344 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
345 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
346 Name="VCXDCMakeTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
347 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
348 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
349 Name="VCBscMakeTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
350 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
351 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
352 Name="VCFxCopTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
353 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
354 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
355 Name="VCPostBuildEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
356 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
357 </Configuration> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
358 <Configuration |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
359 Name="Debug|x64" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
360 OutputDirectory="$(PlatformName)\$(ConfigurationName)" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
361 IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
362 ConfigurationType="4" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
363 InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
364 UseOfMFC="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
365 ATLMinimizesCRunTimeLibraryUsage="false" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
366 > |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
367 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
368 Name="VCPreBuildEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
369 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
370 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
371 Name="VCCustomBuildTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
372 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
373 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
374 Name="VCXMLDataGeneratorTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
375 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
376 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
377 Name="VCWebServiceProxyGeneratorTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
378 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
379 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
380 Name="VCMIDLTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
381 TargetEnvironment="3" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
382 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
383 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
384 Name="VCCLCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
385 Optimization="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
386 AdditionalIncludeDirectories="..\..\include,..\..\include\SDL" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
387 PreprocessorDefinitions="WIN32,_DEBUG,_WINDOWS" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
388 RuntimeLibrary="2" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
389 WarningLevel="3" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
390 SuppressStartupBanner="true" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
391 DebugInformationFormat="1" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
392 CompileAs="0" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
393 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
394 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
395 Name="VCManagedResourceCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
396 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
397 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
398 Name="VCResourceCompilerTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
399 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
400 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
401 Name="VCPreLinkEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
402 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
403 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
404 Name="VCLibrarianTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
405 OutputFile="$(IntDir)\SDLmain.lib" |
4968 | 406 SuppressStartupBanner="true" |
3254
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
407 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
408 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
409 Name="VCALinkTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
410 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
411 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
412 Name="VCXDCMakeTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
413 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
414 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
415 Name="VCBscMakeTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
416 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
417 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
418 Name="VCFxCopTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
419 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
420 <Tool |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
421 Name="VCPostBuildEventTool" |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
422 /> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
423 </Configuration> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
424 </Configurations> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
425 <References> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
426 </References> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
427 <Files> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
428 <File |
5062 | 429 RelativePath="..\..\src\main\windows\SDL_windows_main.c" |
3254
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
430 > |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
431 </File> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
432 </Files> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
433 <Globals> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
434 </Globals> |
1a8c9a6752e5
Upgraded solution to Visual Studio 2008 and added 64-bit target
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
435 </VisualStudioProject> |