Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libSDL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
libSDL
Commits
546a3a8d
Commit
546a3a8d
authored
Jan 19, 2011
by
Sam Lantinga
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added post build step to copy SDL and data files into the test projects
parent
10d46c3b
Changes
22
Show whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
271 additions
and
5 deletions
+271
-5
checkkeys_VS2010.vcxproj
VisualC/tests/checkkeys/checkkeys_VS2010.vcxproj
+12
-0
graywin_VS2010.vcxproj
VisualC/tests/graywin/graywin_VS2010.vcxproj
+12
-0
loopwave_VS2010.vcxproj
VisualC/tests/loopwave/loopwave_VS2010.vcxproj
+12
-0
testalpha_VS2008.vcproj
VisualC/tests/testalpha/testalpha_VS2008.vcproj
+4
-4
testalpha_VS2010.vcxproj
VisualC/tests/testalpha/testalpha_VS2010.vcxproj
+14
-0
testdraw2_VS2010.vcxproj
VisualC/tests/testdraw2/testdraw2_VS2010.vcxproj
+12
-0
testfile_VS2010.vcxproj
VisualC/tests/testfile/testfile_VS2010.vcxproj
+12
-0
testgamma_VS2010.vcxproj
VisualC/tests/testgamma/testgamma_VS2010.vcxproj
+12
-0
testgl_VS2010.vcxproj
VisualC/tests/testgl/testgl_VS2010.vcxproj
+12
-0
testgl2_VS2010.vcxproj
VisualC/tests/testgl2/testgl2_VS2010.vcxproj
+12
-0
testjoystick_VS2010.vcxproj
VisualC/tests/testjoystick/testjoystick_VS2010.vcxproj
+12
-0
testoverlay_VS2010.vcxproj
VisualC/tests/testoverlay/testoverlay_VS2010.vcxproj
+14
-0
testoverlay2_VS2010.vcxproj
VisualC/tests/testoverlay2/testoverlay2_VS2010.vcxproj
+14
-0
testpalette_VS2010.vcxproj
VisualC/tests/testpalette/testpalette_VS2010.vcxproj
+14
-0
testplatform_VS2010.vcxproj
VisualC/tests/testplatform/testplatform_VS2010.vcxproj
+12
-0
testpower_VS2010.vcxproj
VisualC/tests/testpower/testpower_VS2010.vcxproj
+13
-1
testshape_VS2010.vcxproj
VisualC/tests/testshape/testshape_VS2010.vcxproj
+12
-0
testsprite_VS2010.vcxproj
VisualC/tests/testsprite/testsprite_VS2010.vcxproj
+14
-0
testsprite2_VS2010.vcxproj
VisualC/tests/testsprite2/testsprite2_VS2010.vcxproj
+14
-0
testvidinfo_VS2010.vcxproj
VisualC/tests/testvidinfo/testvidinfo_VS2010.vcxproj
+12
-0
testwin_VS2010.vcxproj
VisualC/tests/testwin/testwin_VS2010.vcxproj
+14
-0
testwm_VS2010.vcxproj
VisualC/tests/testwm/testwm_VS2010.vcxproj
+12
-0
No files found.
VisualC/tests/checkkeys/checkkeys_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,12 @@
<ProgramDatabaseFile>
.\Debug/checkkeys.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Midl>
...
...
@@ -118,6 +124,12 @@
<ProgramDatabaseFile>
.\Release/checkkeys.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile
Include=
"..\..\..\test\checkkeys.c"
/>
...
...
VisualC/tests/graywin/graywin_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,12 @@
<ProgramDatabaseFile>
.\Debug/graywin.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Midl>
...
...
@@ -118,6 +124,12 @@
<ProgramDatabaseFile>
.\Release/graywin.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile
Include=
"..\..\..\test\graywin.c"
/>
...
...
VisualC/tests/loopwave/loopwave_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,12 @@
<ProgramDatabaseFile>
.\Release/loopwave.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Midl>
...
...
@@ -118,6 +124,12 @@
<ProgramDatabaseFile>
.\Debug/loopwave.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile
Include=
"..\..\..\Test\Loopwave.c"
/>
...
...
VisualC/tests/testalpha/testalpha_VS2008.vcproj
View file @
546a3a8d
...
...
@@ -102,8 +102,8 @@
/>
<Tool
Name=
"VCPostBuildEventTool"
Description=
"Copy SDL"
CommandLine=
"copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll"
Description=
"Copy SDL
and data files
"
CommandLine=
"copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll

copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
"
/>
</Configuration>
<Configuration
...
...
@@ -194,8 +194,8 @@
/>
<Tool
Name=
"VCPostBuildEventTool"
Description=
"Copy SDL"
CommandLine=
"copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll"
Description=
"Copy SDL
and data files
"
CommandLine=
"copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll

copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
"
/>
</Configuration>
</Configurations>
...
...
VisualC/tests/testalpha/testalpha_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,13 @@
<ProgramDatabaseFile>
.\Debug/testalpha.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Midl>
...
...
@@ -118,6 +125,13 @@
<ProgramDatabaseFile>
.\Release/testalpha.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testdraw2/testdraw2_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,12 @@
<ProgramDatabaseFile>
.\Release/testdraw2.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Midl>
...
...
@@ -118,6 +124,12 @@
<ProgramDatabaseFile>
.\Debug/testdraw2.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile
Include=
"..\..\..\test\common.c"
/>
...
...
VisualC/tests/testfile/testfile_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,12 @@
<ProgramDatabaseFile>
.\Debug/testfile.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Midl>
...
...
@@ -118,6 +124,12 @@
<ProgramDatabaseFile>
.\Release/testfile.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testgamma/testgamma_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,12 @@
<ProgramDatabaseFile>
.\Debug/testgamma.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Midl>
...
...
@@ -118,6 +124,12 @@
<ProgramDatabaseFile>
.\Release/testgamma.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testgl/testgl_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -82,6 +82,12 @@
<ProgramDatabaseFile>
.\Debug/testgl.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Midl>
...
...
@@ -120,6 +126,12 @@
<ProgramDatabaseFile>
.\Release/testgl.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testgl2/testgl2_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -82,6 +82,12 @@
<ProgramDatabaseFile>
.\Debug/testgl2.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Midl>
...
...
@@ -120,6 +126,12 @@
<ProgramDatabaseFile>
.\Release/testgl2.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile
Include=
"..\..\..\test\common.c"
/>
...
...
VisualC/tests/testjoystick/testjoystick_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,12 @@
<ProgramDatabaseFile>
.\Release/testjoystick.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Midl>
...
...
@@ -118,6 +124,12 @@
<ProgramDatabaseFile>
.\Debug/testjoystick.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testoverlay/testoverlay_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,13 @@
<ProgramDatabaseFile>
.\Release/testoverlay.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\sample.bmp $(ProjectDir)\sample.bmp
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Midl>
...
...
@@ -118,6 +125,13 @@
<ProgramDatabaseFile>
.\Debug/testoverlay.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\sample.bmp $(ProjectDir)\sample.bmp
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testoverlay2/testoverlay2_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,13 @@
<ProgramDatabaseFile>
.\Release/testoverlay2.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\moose.dat $(ProjectDir)\moose.dat
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Midl>
...
...
@@ -118,6 +125,13 @@
<ProgramDatabaseFile>
.\Debug/testoverlay2.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\moose.dat $(ProjectDir)\moose.dat
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testpalette/testpalette_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,13 @@
<ProgramDatabaseFile>
.\Release/testpalette.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\sail.bmp $(ProjectDir)\sail.bmp
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Midl>
...
...
@@ -118,6 +125,13 @@
<ProgramDatabaseFile>
.\Debug/testpalette.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\sail.bmp $(ProjectDir)\sail.bmp
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testplatform/testplatform_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -85,6 +85,12 @@
<SuppressStartupBanner>
true
</SuppressStartupBanner>
<OutputFile>
.\Debug/testplatform.bsc
</OutputFile>
</Bscmake>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Midl>
...
...
@@ -126,6 +132,12 @@
<SuppressStartupBanner>
true
</SuppressStartupBanner>
<OutputFile>
.\Release/testplatform.bsc
</OutputFile>
</Bscmake>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testpower/testpower_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,12 @@
<ProgramDatabaseFile>
.\Debug/testpower.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Midl>
...
...
@@ -118,6 +124,12 @@
<ProgramDatabaseFile>
.\Release/testpower.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testshape/testshape_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,12 @@
<ProgramDatabaseFile>
.\Release/testshape.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Midl>
...
...
@@ -118,6 +124,12 @@
<ProgramDatabaseFile>
.\Debug/testshape.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testsprite/testsprite_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,13 @@
<ProgramDatabaseFile>
.\Release/testsprite.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Midl>
...
...
@@ -118,6 +125,13 @@
<ProgramDatabaseFile>
.\Debug/testsprite.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testsprite2/testsprite2_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,13 @@
<ProgramDatabaseFile>
.\Release/testsprite2.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Midl>
...
...
@@ -118,6 +125,13 @@
<ProgramDatabaseFile>
.\Debug/testsprite2.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile
Include=
"..\..\..\test\common.c"
/>
...
...
VisualC/tests/testvidinfo/testvidinfo_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,12 @@
<ProgramDatabaseFile>
.\Release/testvidinfo.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Midl>
...
...
@@ -118,6 +124,12 @@
<ProgramDatabaseFile>
.\Debug/testvidinfo.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testwin/testwin_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,13 @@
<ProgramDatabaseFile>
.\Debug/testwin.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\sample.bmp $(ProjectDir)\sample.bmp
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Midl>
...
...
@@ -118,6 +125,13 @@
<ProgramDatabaseFile>
.\Release/testwin.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
copy $(SolutionDir)\..\test\sample.bmp $(ProjectDir)\sample.bmp
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL and data files
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
VisualC/tests/testwm/testwm_VS2010.vcxproj
View file @
546a3a8d
...
...
@@ -81,6 +81,12 @@
<ProgramDatabaseFile>
.\Debug/testwm.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Midl>
...
...
@@ -118,6 +124,12 @@
<ProgramDatabaseFile>
.\Release/testwm.pdb
</ProgramDatabaseFile>
<SubSystem>
Windows
</SubSystem>
</Link>
<PostBuildEvent>
<Command>
copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>
Copy SDL
</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<Library
Include=
"..\..\Sdl\Debug\SDL.lib"
/>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment