freesci-develop
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[freesci-develop] r1564 - in freesci/trunk: . src/include src/win32 src/


From: freesci
Subject: [freesci-develop] r1564 - in freesci/trunk: . src/include src/win32 src/win32/msvc8-2005 src/win32/msvc8-2005/fsci_dll src/win32/msvc8-2005/sciv
Date: Sat, 25 Feb 2006 06:06:55 +0100

Author: arangas
Date: 2006-02-25 06:06:40 +0100 (Sat, 25 Feb 2006)
New Revision: 1564

Added:
   freesci/trunk/src/win32/msvc8-2005/
   freesci/trunk/src/win32/msvc8-2005/FreeSCI.sln
   freesci/trunk/src/win32/msvc8-2005/fsci_dll/
   freesci/trunk/src/win32/msvc8-2005/fsci_dll/fsci_dll.vcproj
   freesci/trunk/src/win32/msvc8-2005/sciv/
   freesci/trunk/src/win32/msvc8-2005/sciv/sciv.vcproj
Modified:
   freesci/trunk/ChangeLog
   freesci/trunk/README.Win32
   freesci/trunk/src/include/graphics_directx.h
Log:
Build environment for Visual C++ 2005 and Express Edition.

-- Alex.

Modified: freesci/trunk/ChangeLog
===================================================================
--- freesci/trunk/ChangeLog     2006-02-21 21:20:19 UTC (rev 1563)
+++ freesci/trunk/ChangeLog     2006-02-25 05:06:40 UTC (rev 1564)
@@ -1,3 +1,16 @@
+2006-02-25  Alex Angas <address@hidden>
+
+       * src/win32/msvc8-2005: New folder.
+       * src/win32/msvc8-2005/FreeSCI.sln: VS 2005 solution file.
+       * src/win32/msvc8-2005/fsci_dll: New folder for fsci.dll.
+       * src/win32/msvc8-2005/fsci_dll/fsci_dll.vcproj: Project file for 
fsci.dll.
+       * src/win32/msvc8-2005/sciv: New folder for FreeSCI.exe.
+       * src/win32/msvc8-2005/sciv/sciv.vcproj: Project file for FreeSCI.exe.
+
+       * src/README.Win32: Instructions for VS 2005.
+
+       * src/include/graphics_directx.h: Removed unneccessary include.
+
 2006-02-22  Alex Angas <address@hidden>
 
        * src/README.Win32: Documentation update.

Modified: freesci/trunk/README.Win32
===================================================================
--- freesci/trunk/README.Win32  2006-02-21 21:20:19 UTC (rev 1563)
+++ freesci/trunk/README.Win32  2006-02-25 05:06:40 UTC (rev 1564)
@@ -17,22 +17,79 @@
 own, there are different requirements.
 
  * Visual C++ or Studio 6.0 with Service Pack 6:
-   - Latest Win32 Platform SDK, both Core 32-bit and DirectX components from:
-     http://msdn.microsoft.com/platformsdk
 
- * Visual C++ or Studio 7.0 (2002):
-   - Not supported
+   - Win32 Platform SDK from:
+     http://msdn.microsoft.com/platformsdk/
+     Only the Core 32-bit component is required
 
- * Visual C++ or Studio 7.1 (2003):
-   - No additional requirements
+   - DirectX SDK 8.0a ONLY from:
+     
http://download.microsoft.com/download/win2000pro/dx8asdk/8.0a/W9X2KMe/EN-US/DX8a_SDK.exe
 
- * Visual C++ or Studio 8.0 (2005) and their Express Editions:
-   - Not currently supported (very soon)
+ * Visual C++ or Studio 7.0 (2002): Not supported
 
-You will also need the SDL library from http://www.libsdl.org/. You need to
-download the development library for Win32 (e.g. SDL-devel-x.y.z-VC6.zip).
+ * Visual C++ or Studio 7.1 (2003): No extra requirements
 
+ * Visual C++ or Studio 8.0 (2005) (including Express Edition):
 
+   - Win32 Platform SDK from:
+     http://msdn.microsoft.com/platformsdk/
+     Only the Core 32-bit component is required
+   
+   - DirectX SDK 8.0a ONLY from:
+     
http://download.microsoft.com/download/win2000pro/dx8asdk/8.0a/W9X2KMe/EN-US/DX8a_SDK.exe
+
+For all versions you need the SDL 1.2 development library for Win32 from
+http://www.libsdl.org/ (filename looks like SDL-devel-x.y.z-VC6.zip).
+
+
+2.1.1 Visual C++ include/lib directories
+----------------------------------------
+
+Set the directories Visual C++ uses for its default include and lib files.
+Under Visual C++ 2005 this is done from the Tools / Options menu, then expand
+'Projects and Solutions' and select 'VC++ Directories'. Note the top/bottom
+order given - this is important!
+
+Visual C++ 6.0:
+
+   Include files  -> C:\Program Files\Microsoft Platform SDK\include  (top)
+                     c:\mssdk\include  (top)
+
+   Library files  -> C:\Program Files\Microsoft Platform SDK\lib  (top)
+                     c:\mssdk\lib  (top)
+
+   Source files   -> C:\Program Files\Microsoft Platform SDK\src  (top)
+
+Visual C++ 2003: Step not required, comes with adequate SDKs
+
+Visual C++ 2005 Express Edition:
+
+   Include files  -> C:\Program Files\Microsoft Platform SDK\include  (top)
+                     c:\mssdk\include  (bottom)
+
+   Library files  -> C:\Program Files\Microsoft Platform SDK\lib  (top)
+                     c:\mssdk\lib  (bottom)
+
+   Source files   -> C:\Program Files\Microsoft Platform SDK\src  (top)
+
+Visual C++ 2005 (non-Express Edition):
+
+   Include files  -> c:\mssdk\include  (bottom)
+
+   Library files  -> c:\mssdk\lib  (bottom)
+
+
+2.1.2 Visual C++ 2005 Express Edition
+-------------------------------------
+
+Users of Express Edition will receive the error 'Solution folders are not
+supported in this version of Visual Studio' when opening the solution. This
+can be safely ignored as this feature only provides easy access to FreeSCI
+README files. Changes to the freesci.sln file should only be committed to
+source control by non-users of Express Edition so that this feature is not
+inadvertantly removed.
+
+
 2.2 Directory structure
 -----------------------
 
@@ -51,8 +108,10 @@
 2.3 How to build
 ----------------
 
-1. Go to the src\win32 directory. For Visual C++ or Studio 6, load freesci.dsw.
+1. Go to the src\win32 directory.
+   For Visual C++ or Studio 6, load freesci.dsw.
    For Visual C++ or Studio 2003, load freesci.sln.
+   For Visual C++ or Studio 2005, load msvc8-2005\freesci.sln.
 
 2. Set the active project to "freesci - Win32 Release". Rebuild all.
 

Modified: freesci/trunk/src/include/graphics_directx.h
===================================================================
--- freesci/trunk/src/include/graphics_directx.h        2006-02-21 21:20:19 UTC 
(rev 1563)
+++ freesci/trunk/src/include/graphics_directx.h        2006-02-25 05:06:40 UTC 
(rev 1564)
@@ -26,7 +26,6 @@
 
 #include <windows.h>
 #include <d3d8.h>
-#include <d3dx8core.h>
 #include <d3dx8math.h>
 #include <dxerr8.h>
 

Added: freesci/trunk/src/win32/msvc8-2005/FreeSCI.sln
===================================================================
--- freesci/trunk/src/win32/msvc8-2005/FreeSCI.sln      2006-02-21 21:20:19 UTC 
(rev 1563)
+++ freesci/trunk/src/win32/msvc8-2005/FreeSCI.sln      2006-02-25 05:06:40 UTC 
(rev 1564)
@@ -0,0 +1,36 @@
+
+Microsoft Visual Studio Solution File, Format Version 9.00
+# Visual Studio 2005
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", 
"Solution Items", "{5FC2D6CC-D500-4F38-AF75-77C1E37A3444}"
+       ProjectSection(SolutionItems) = preProject
+               ..\..\..\ChangeLog = ..\..\..\ChangeLog
+               ..\..\..\README = ..\..\..\README
+               ..\..\..\README.Win32 = ..\..\..\README.Win32
+       EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fsci_dll", 
"fsci_dll\fsci_dll.vcproj", "{576F250E-1CAE-4C39-836B-739477DA6249}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sciv", 
"sciv\sciv.vcproj", "{1C34096E-24B5-4276-ADCC-255E9E055062}"
+       ProjectSection(ProjectDependencies) = postProject
+               {576F250E-1CAE-4C39-836B-739477DA6249} = 
{576F250E-1CAE-4C39-836B-739477DA6249}
+       EndProjectSection
+EndProject
+Global
+       GlobalSection(SolutionConfigurationPlatforms) = preSolution
+               Debug|Win32 = Debug|Win32
+               Release|Win32 = Release|Win32
+       EndGlobalSection
+       GlobalSection(ProjectConfigurationPlatforms) = postSolution
+               {576F250E-1CAE-4C39-836B-739477DA6249}.Debug|Win32.ActiveCfg = 
Debug|Win32
+               {576F250E-1CAE-4C39-836B-739477DA6249}.Debug|Win32.Build.0 = 
Debug|Win32
+               {576F250E-1CAE-4C39-836B-739477DA6249}.Release|Win32.ActiveCfg 
= Release|Win32
+               {576F250E-1CAE-4C39-836B-739477DA6249}.Release|Win32.Build.0 = 
Release|Win32
+               {1C34096E-24B5-4276-ADCC-255E9E055062}.Debug|Win32.ActiveCfg = 
Debug|Win32
+               {1C34096E-24B5-4276-ADCC-255E9E055062}.Debug|Win32.Build.0 = 
Debug|Win32
+               {1C34096E-24B5-4276-ADCC-255E9E055062}.Release|Win32.ActiveCfg 
= Release|Win32
+               {1C34096E-24B5-4276-ADCC-255E9E055062}.Release|Win32.Build.0 = 
Release|Win32
+       EndGlobalSection
+       GlobalSection(SolutionProperties) = preSolution
+               HideSolutionNode = FALSE
+       EndGlobalSection
+EndGlobal

Added: freesci/trunk/src/win32/msvc8-2005/fsci_dll/fsci_dll.vcproj
===================================================================
--- freesci/trunk/src/win32/msvc8-2005/fsci_dll/fsci_dll.vcproj 2006-02-21 
21:20:19 UTC (rev 1563)
+++ freesci/trunk/src/win32/msvc8-2005/fsci_dll/fsci_dll.vcproj 2006-02-25 
05:06:40 UTC (rev 1564)
@@ -0,0 +1,841 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+       ProjectType="Visual C++"
+       Version="8.00"
+       Name="fsci_dll"
+       ProjectGUID="{576F250E-1CAE-4C39-836B-739477DA6249}"
+       RootNamespace="fsci_dll"
+       Keyword="Win32Proj"
+       >
+       <Platforms>
+               <Platform
+                       Name="Win32"
+               />
+       </Platforms>
+       <ToolFiles>
+       </ToolFiles>
+       <Configurations>
+               <Configuration
+                       Name="Debug|Win32"
+                       OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+                       IntermediateDirectory="$(ConfigurationName)"
+                       ConfigurationType="2"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               UseUnicodeResponseFiles="false"
+                               Optimization="0"
+                               
AdditionalIncludeDirectories="..\..\..\..\..\SDL\include,..\..\..\include,..\..\..\include\win32"
+                               
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;FREESCI_EXPORTS;PACKAGE=\&quot;FreeSCI\&quot;;_CONSOLE;X_DISPLAY_MISSING;HAVE_SDL;HAVE_MEMCHR;HAVE_SYS_STAT_H;HAVE_FCNTL_H;HAVE_STRING_H;HAVE_DIRECTX;WANT_CONSOLE"
+                               BasicRuntimeChecks="3"
+                               RuntimeLibrary="3"
+                               TreatWChar_tAsBuiltInType="false"
+                               ForceConformanceInForLoopScope="false"
+                               UsePrecompiledHeader="0"
+                               BrowseInformation="0"
+                               WarningLevel="3"
+                               Detect64BitPortabilityProblems="true"
+                               DebugInformationFormat="3"
+                               CompileAs="0"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="SDL.lib d3d8.lib 
d3dx8.lib dxerr8.lib winmm.lib user32.lib gdi32.lib"
+                               OutputFile="$(OutDir)\fsci.dll"
+                               LinkIncremental="1"
+                               
AdditionalLibraryDirectories="..\..\..\..\..\SDL\lib"
+                               ModuleDefinitionFile="..\..\freesci.def"
+                               GenerateDebugInformation="true"
+                               SubSystem="0"
+                               TargetMachine="1"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCManifestTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCAppVerifierTool"
+                       />
+                       <Tool
+                               Name="VCWebDeploymentTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                       />
+               </Configuration>
+               <Configuration
+                       Name="Release|Win32"
+                       OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+                       IntermediateDirectory="$(ConfigurationName)"
+                       ConfigurationType="2"
+                       CharacterSet="2"
+                       WholeProgramOptimization="1"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               UseUnicodeResponseFiles="false"
+                               InlineFunctionExpansion="2"
+                               EnableIntrinsicFunctions="true"
+                               FavorSizeOrSpeed="1"
+                               OmitFramePointers="true"
+                               
AdditionalIncludeDirectories="..\..\..\..\..\SDL\include,..\..\..\include,..\..\..\include\win32"
+                               
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;FREESCI_EXPORTS;PACKAGE=\&quot;FreeSCI\&quot;;_CONSOLE;X_DISPLAY_MISSING;HAVE_SDL;HAVE_MEMCHR;HAVE_SYS_STAT_H;HAVE_FCNTL_H;HAVE_STRING_H;HAVE_DIRECTX;WANT_CONSOLE"
+                               StringPooling="true"
+                               RuntimeLibrary="2"
+                               BufferSecurityCheck="false"
+                               TreatWChar_tAsBuiltInType="false"
+                               ForceConformanceInForLoopScope="false"
+                               UsePrecompiledHeader="0"
+                               BrowseInformation="0"
+                               WarningLevel="3"
+                               Detect64BitPortabilityProblems="true"
+                               DebugInformationFormat="3"
+                               CompileAs="0"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="SDL.lib d3d8.lib 
d3dx8.lib dxerr8.lib winmm.lib user32.lib gdi32.lib"
+                               OutputFile="..\..\..\..\bin\fsci.dll"
+                               LinkIncremental="1"
+                               
AdditionalLibraryDirectories="..\..\..\..\..\SDL\lib"
+                               ModuleDefinitionFile="..\..\freesci.def"
+                               GenerateDebugInformation="true"
+                               SubSystem="0"
+                               OptimizeReferences="2"
+                               EnableCOMDATFolding="2"
+                               OptimizeForWindows98="1"
+                               TargetMachine="1"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCManifestTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCAppVerifierTool"
+                       />
+                       <Tool
+                               Name="VCWebDeploymentTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                       />
+               </Configuration>
+       </Configurations>
+       <References>
+       </References>
+       <Files>
+               <Filter
+                       Name="Source Files"
+                       Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+                       
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+                       >
+                       <Filter
+                               Name="engine"
+                               >
+                               <File
+                                       RelativePath="..\..\..\engine\game.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\engine\grammar.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\engine\heap.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\engine\kernel.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\engine\kevent.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\engine\kfile.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\engine\kgraphics.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\engine\klists.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\engine\kmath.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\engine\kmenu.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\engine\kmovement.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\engine\kpathing.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\engine\kscripts.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\engine\ksound.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\engine\kstring.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\engine\said.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\engine\said.y"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\engine\savegame.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\engine\savegame.cfsml"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\engine\scriptdebug.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\engine\vm.c"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="scicore"
+                               >
+                               <File
+                                       
RelativePath="..\..\..\scicore\console.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\scicore\decompress0.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\scicore\decompress01.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\scicore\decompress1.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\scicore\decompress11.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\scicore\resource.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\scicore\resource_map.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\scicore\resource_patch.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\scicore\sci_memory.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\scicore\script.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\scicore\tools.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\scicore\versions.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\scicore\vocab.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\scicore\vocab_debug.c"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="gfx"
+                               >
+                               <File
+                                       RelativePath="..\..\..\gfx\antialias.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\gfx\font-5x8.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\gfx\font-6x10.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\gfx\font.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\gfx\gfx_console.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\gfx\gfx_res_options.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\gfx\gfx_resource.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\gfx\gfx_support.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\gfx\gfx_tools.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\gfx\menubar.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\gfx\operations.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\gfx\resmgr.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\gfx\sbtree.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\gfx\sci_widgets.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\gfx\widgets.c"
+                                       >
+                               </File>
+                               <Filter
+                                       Name="resource"
+                                       >
+                                       <File
+                                               
RelativePath="..\..\..\gfx\resource\sci_cursor_0.c"
+                                               >
+                                       </File>
+                                       <File
+                                               
RelativePath="..\..\..\gfx\resource\sci_font.c"
+                                               >
+                                       </File>
+                                       <File
+                                               
RelativePath="..\..\..\gfx\resource\sci_pic_0.c"
+                                               >
+                                       </File>
+                                       <File
+                                               
RelativePath="..\..\..\gfx\resource\sci_resmgr.c"
+                                               >
+                                       </File>
+                                       <File
+                                               
RelativePath="..\..\..\gfx\resource\sci_view_0.c"
+                                               >
+                                       </File>
+                               </Filter>
+                               <Filter
+                                       Name="drivers"
+                                       >
+                                       <File
+                                               
RelativePath="..\..\..\gfx\drivers\dx_driver.cpp"
+                                               >
+                                       </File>
+                                       <File
+                                               
RelativePath="..\..\..\gfx\drivers\gfx_drivers.c"
+                                               >
+                                       </File>
+                                       <File
+                                               
RelativePath="..\..\..\gfx\drivers\null_driver.c"
+                                               >
+                                       </File>
+                                       <File
+                                               
RelativePath="..\..\..\gfx\drivers\sdl_driver.c"
+                                               >
+                                       </File>
+                               </Filter>
+                       </Filter>
+                       <Filter
+                               Name="sound"
+                               >
+                               <File
+                                       RelativePath="..\..\..\sound\fmopl.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\sound\midi_adlibemu.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\sound\midi_device.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\sound\midi_mt32.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\sound\midi_mt32gm.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\sound\midiout.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\sound\midiout_win32mci.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\sound\oldmidi.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\sound\pcmout.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\sound\pcmout_sdl.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\sound\polled_ss.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\sound\polled_ss_win32.c"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\sound\sfx_save.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\sound\sfx_save.cfsml"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\..\..\sound\sound.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\sound\soundserver.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\sound\thread_ss_sdl.c"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="win32"
+                               >
+                               <File
+                                       RelativePath="..\..\usleep.c"
+                                       >
+                               </File>
+                       </Filter>
+               </Filter>
+               <Filter
+                       Name="Header Files"
+                       Filter="h;hpp;hxx;hm;inl;inc;xsd"
+                       
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
+                       >
+                       <File
+                               RelativePath="..\..\..\include\console.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\engine.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\event.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\sound\fmopl.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_driver.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_operations.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_options.h"
+                               >
+                       </File>
+                       <File
+                               
RelativePath="..\..\..\include\gfx_res_options.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_resmgr.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_resource.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_sci.h"
+                               >
+                       </File>
+                       <File
+                               
RelativePath="..\..\..\include\gfx_state_internal.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_system.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_tools.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_widgets.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\heap.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\kdebug.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\kernel.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\menubar.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\midi_device.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\midiout.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\modules.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\pcmout.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\resource.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\sbtree.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\sci_conf.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\sci_graphics.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\sci_memory.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\sci_widgets.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\sciresource.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\scitypes.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\script.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\sound.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\soundserver.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\uinput.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\util.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\versions.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\vm.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\vocabulary.h"
+                               >
+                       </File>
+                       <Filter
+                               Name="win32"
+                               >
+                               <File
+                                       
RelativePath="..\..\..\include\graphics_directx.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\include\win32\sci_win32.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="SDL"
+                               >
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\begin_code.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\close_code.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_active.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_audio.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_byteorder.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_cdrom.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_copying.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_cpuinfo.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_endian.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_error.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_events.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_getenv.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_joystick.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_keyboard.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_keysym.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_loadso.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_main.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_mouse.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_mutex.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_name.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_opengl.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_quit.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_rwops.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_syswm.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_thread.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_timer.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_types.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_version.h"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\..\..\SDL\include\SDL_video.h"
+                                       >
+                               </File>
+                       </Filter>
+               </Filter>
+       </Files>
+       <Globals>
+       </Globals>
+</VisualStudioProject>

Added: freesci/trunk/src/win32/msvc8-2005/sciv/sciv.vcproj
===================================================================
--- freesci/trunk/src/win32/msvc8-2005/sciv/sciv.vcproj 2006-02-21 21:20:19 UTC 
(rev 1563)
+++ freesci/trunk/src/win32/msvc8-2005/sciv/sciv.vcproj 2006-02-25 05:06:40 UTC 
(rev 1564)
@@ -0,0 +1,407 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+       ProjectType="Visual C++"
+       Version="8.00"
+       Name="sciv"
+       ProjectGUID="{1C34096E-24B5-4276-ADCC-255E9E055062}"
+       RootNamespace="sciv"
+       Keyword="Win32Proj"
+       >
+       <Platforms>
+               <Platform
+                       Name="Win32"
+               />
+       </Platforms>
+       <ToolFiles>
+       </ToolFiles>
+       <Configurations>
+               <Configuration
+                       Name="Debug|Win32"
+                       OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+                       IntermediateDirectory="$(ConfigurationName)"
+                       ConfigurationType="1"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               UseUnicodeResponseFiles="false"
+                               Optimization="0"
+                               
AdditionalIncludeDirectories="..\..\..\..\..\SDL\include,..\..\..\include,..\..\..\include\win32"
+                               
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;PACKAGE=\&quot;FreeSCI\&quot;;HAVE_GETOPT_H;_CONSOLE;HAVE_STRING_H;HAVE_SYS_STAT_H;HAVE_FCNTL_H;WANT_CONSOLE"
+                               MinimalRebuild="false"
+                               BasicRuntimeChecks="3"
+                               RuntimeLibrary="3"
+                               UsePrecompiledHeader="0"
+                               BrowseInformation="0"
+                               WarningLevel="3"
+                               Detect64BitPortabilityProblems="true"
+                               DebugInformationFormat="3"
+                               CompileAs="0"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="$(OutDir)\fsci.lib"
+                               OutputFile="$(OutDir)\FreeSCI.exe"
+                               LinkIncremental="1"
+                               ModuleDefinitionFile=""
+                               GenerateDebugInformation="true"
+                               SubSystem="1"
+                               TargetMachine="1"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCManifestTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCAppVerifierTool"
+                       />
+                       <Tool
+                               Name="VCWebDeploymentTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                               CommandLine="echo Copying SDL.dll to 
$(OutDir)\&#x0D;&#x0A;copy /y ..\..\..\..\..\SDL\lib\sdl.dll 
$(OutDir)\&#x0D;&#x0A;"
+                       />
+               </Configuration>
+               <Configuration
+                       Name="Release|Win32"
+                       OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+                       IntermediateDirectory="$(ConfigurationName)"
+                       ConfigurationType="1"
+                       CharacterSet="2"
+                       WholeProgramOptimization="1"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               UseUnicodeResponseFiles="false"
+                               InlineFunctionExpansion="2"
+                               EnableIntrinsicFunctions="true"
+                               FavorSizeOrSpeed="1"
+                               OmitFramePointers="true"
+                               
AdditionalIncludeDirectories="..\..\..\..\..\SDL\include,..\..\..\include,..\..\..\include\win32"
+                               
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;PACKAGE=\&quot;FreeSCI\&quot;;HAVE_GETOPT_H;_CONSOLE;HAVE_STRING_H;HAVE_SYS_STAT_H;HAVE_FCNTL_H;WANT_CONSOLE"
+                               StringPooling="true"
+                               RuntimeLibrary="2"
+                               BufferSecurityCheck="false"
+                               TreatWChar_tAsBuiltInType="false"
+                               ForceConformanceInForLoopScope="false"
+                               UsePrecompiledHeader="0"
+                               BrowseInformation="1"
+                               WarningLevel="3"
+                               Detect64BitPortabilityProblems="true"
+                               DebugInformationFormat="3"
+                               CompileAs="0"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               
AdditionalDependencies="..\..\..\..\bin\fsci.lib"
+                               OutputFile="..\..\..\..\bin\FreeSCI.exe"
+                               LinkIncremental="1"
+                               GenerateDebugInformation="true"
+                               SubSystem="1"
+                               OptimizeReferences="2"
+                               EnableCOMDATFolding="2"
+                               OptimizeForWindows98="1"
+                               TargetMachine="1"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCManifestTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCAppVerifierTool"
+                       />
+                       <Tool
+                               Name="VCWebDeploymentTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                               CommandLine="echo Copying SDL.dll to 
$(OutDir)\..\..\..\..\bin\&#x0D;&#x0A;copy /y ..\..\..\..\..\SDL\lib\sdl.dll 
$(OutDir)\..\..\..\..\bin\&#x0D;&#x0A;"
+                       />
+               </Configuration>
+       </Configurations>
+       <References>
+       </References>
+       <Files>
+               <Filter
+                       Name="Header Files"
+                       Filter="h;hpp;hxx;hm;inl;inc;xsd"
+                       
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
+                       >
+                       <File
+                               RelativePath="..\..\..\include\console.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\engine.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\event.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\game_select.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_driver.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_operations.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_options.h"
+                               >
+                       </File>
+                       <File
+                               
RelativePath="..\..\..\include\gfx_res_options.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_resmgr.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_resource.h"
+                               >
+                       </File>
+                       <File
+                               
RelativePath="..\..\..\include\gfx_state_internal.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_system.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_tools.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\gfx_widgets.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\heap.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\kdebug.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\kernel.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\menubar.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\midi_device.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\midiout.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\pcmout.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\resource.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\sbtree.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\sci_conf.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\sci_memory.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\sciresource.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\scitypes.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\script.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\sound.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\soundserver.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\uinput.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\versions.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\vm.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\include\vocabulary.h"
+                               >
+                       </File>
+                       <Filter
+                               Name="win32"
+                               >
+                               <File
+                                       
RelativePath="..\..\..\include\win32\getopt.h"
+                                       >
+                               </File>
+                       </Filter>
+               </Filter>
+               <Filter
+                       Name="Source Files"
+                       Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+                       
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+                       >
+                       <File
+                               RelativePath="..\..\..\config.c"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\config.l"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\main.c"
+                               >
+                       </File>
+                       <Filter
+                               Name="scicore"
+                               >
+                               <File
+                                       
RelativePath="..\..\..\scicore\versions.c"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="menu"
+                               >
+                               <File
+                                       
RelativePath="..\..\..\menu\game_select.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\menu\game_select_init.c"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\..\menu\game_select_screen.c"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="gfx"
+                               >
+                               <File
+                                       RelativePath="..\..\..\gfx\font.c"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="win32"
+                               >
+                               <File
+                                       RelativePath="..\..\getopt.c"
+                                       >
+                               </File>
+                       </Filter>
+               </Filter>
+       </Files>
+       <Globals>
+       </Globals>
+</VisualStudioProject>





reply via email to

[Prev in Thread] Current Thread [Next in Thread]