diff options
| author | Mateusz Loskot <mateusz@loskot.net> | 2006-11-17 22:16:33 +0000 |
|---|---|---|
| committer | Mateusz Loskot <mateusz@loskot.net> | 2006-11-17 22:16:33 +0000 |
| commit | 6209aa6374a226cc889b4578a505b91f3ec0ec7e (patch) | |
| tree | 0462efa230657ce32f0b10a1c9819606227ebe3d | |
| parent | b28c3691de529a27198f56f5c4c470ff53249d97 (diff) | |
| download | PROJ-6209aa6374a226cc889b4578a505b91f3ec0ec7e.tar.gz PROJ-6209aa6374a226cc889b4578a505b91f3ec0ec7e.zip | |
Uploaded PROJ.4 port for Windows CE.
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@1377 4e78687f-474d-0410-85f9-8d5e500ac6b2
| -rw-r--r-- | src/nad_init.c | 14 | ||||
| -rw-r--r-- | src/pj_gridinfo.c | 14 | ||||
| -rw-r--r-- | src/pj_gridlist.c | 14 | ||||
| -rw-r--r-- | src/pj_open_lib.c | 8 | ||||
| -rw-r--r-- | src/projects.h | 12 | ||||
| -rw-r--r-- | wince/msvc80/README.txt | 23 | ||||
| -rw-r--r-- | wince/msvc80/projce_common.vsprops | 15 | ||||
| -rw-r--r-- | wince/msvc80/projce_dll/projce_dll.sln | 43 | ||||
| -rw-r--r-- | wince/msvc80/projce_dll/projce_dll.vcproj | 991 | ||||
| -rw-r--r-- | wince/msvc80/projce_lib/projce_lib.sln | 43 | ||||
| -rw-r--r-- | wince/msvc80/projce_lib/projce_lib.vcproj | 955 |
11 files changed, 2129 insertions, 3 deletions
diff --git a/src/nad_init.c b/src/nad_init.c index f582b747..936bada5 100644 --- a/src/nad_init.c +++ b/src/nad_init.c @@ -28,6 +28,9 @@ ****************************************************************************** * * $Log$ + * Revision 1.9 2006/11/17 22:16:30 mloskot + * Uploaded PROJ.4 port for Windows CE. + * * Revision 1.8 2003/03/17 18:56:01 warmerda * implement delayed loading of ctable format files * @@ -53,9 +56,18 @@ #include <projects.h> #include <stdio.h> #include <errno.h> -#include <assert.h> #include <string.h> +#ifdef _WIN32_WCE +/* assert.h includes all Windows API headers and causes 'LP' name clash. + * Here assert we disable assert() for Windows CE. + * TODO - mloskot: re-implement porting friendly assert + */ +# define assert(exp) ((void)0) +#else +# include <assert.h> +#endif /* _WIN32_WCE */ + /************************************************************************/ /* nad_ctable_load() */ /* */ diff --git a/src/pj_gridinfo.c b/src/pj_gridinfo.c index 19dc1bf5..2eaf6a09 100644 --- a/src/pj_gridinfo.c +++ b/src/pj_gridinfo.c @@ -29,6 +29,9 @@ ****************************************************************************** * * $Log$ + * Revision 1.8 2006/11/17 22:16:30 mloskot + * Uploaded PROJ.4 port for Windows CE. + * * Revision 1.7 2005/07/07 00:16:03 fwarmerdam * Fixed debug fprintf syntax per: * http://bugzilla.remotesensing.org/show_bug.cgi?id=886 @@ -59,7 +62,16 @@ #include <string.h> #include <math.h> #include <errno.h> -#include <assert.h> + +#ifdef _WIN32_WCE +/* assert.h includes all Windows API headers and causes 'LP' name clash. + * Here assert we disable assert() for Windows CE. + * TODO - mloskot: re-implement porting friendly assert + */ +# define assert(exp) ((void)0) +#else +# include <assert.h> +#endif /* _WIN32_WCE */ /************************************************************************/ /* swap_words() */ diff --git a/src/pj_gridlist.c b/src/pj_gridlist.c index f30d2c55..e86dd575 100644 --- a/src/pj_gridlist.c +++ b/src/pj_gridlist.c @@ -29,6 +29,9 @@ ****************************************************************************** * * $Log$ + * Revision 1.5 2006/11/17 22:16:30 mloskot + * Uploaded PROJ.4 port for Windows CE. + * * Revision 1.4 2005/11/01 05:56:13 fwarmerdam * improved error handling if gridcount is zero * @@ -48,7 +51,16 @@ #include <projects.h> #include <string.h> #include <math.h> -#include <assert.h> + +#ifdef _WIN32_WCE +/* assert.h includes all Windows API headers and causes 'LP' name clash. + * Here assert we disable assert() for Windows CE. + * TODO - mloskot: re-implement porting friendly assert + */ +# define assert(exp) ((void)0) +#else +# include <assert.h> +#endif /* _WIN32_WCE */ static PJ_GRIDINFO *grid_list = NULL; diff --git a/src/pj_open_lib.c b/src/pj_open_lib.c index e7b26ca6..e53e8e2d 100644 --- a/src/pj_open_lib.c +++ b/src/pj_open_lib.c @@ -31,6 +31,9 @@ ****************************************************************************** * * $Log$ + * Revision 1.7 2006/11/17 22:16:30 mloskot + * Uploaded PROJ.4 port for Windows CE. + * * Revision 1.6 2004/09/16 15:14:01 fwarmerdam * * src/pj_open_lib.c: added pj_set_searchpath() provided by Eric Miller. * @@ -111,6 +114,8 @@ pj_open_lib(char *name, char *mode) { int n = 0; int i; +#ifndef _WIN32_WCE + /* check if ~/name */ if (*name == '~' && name[1] == DIR_CHAR) if (sysname = getenv("HOME")) { @@ -163,4 +168,7 @@ pj_open_lib(char *name, char *mode) { fid == NULL ? "failed" : "succeeded" ); return(fid); +#else + return NULL; +#endif /* _WIN32_WCE */ } diff --git a/src/projects.h b/src/projects.h index 80bccab5..a8e6e28e 100644 --- a/src/projects.h +++ b/src/projects.h @@ -28,6 +28,9 @@ ****************************************************************************** * * $Log$ + * Revision 1.25 2006/11/17 22:16:30 mloskot + * Uploaded PROJ.4 port for Windows CE. + * * Revision 1.24 2006/10/18 04:34:03 fwarmerdam * added mlist functions from libproj4 * @@ -149,6 +152,15 @@ extern "C" { extern double hypot(double, double); #endif +#ifdef _WIN32_WCE +# include <wce_stdlib.h> +# include <wce_stdio.h> +# define rewind wceex_rewind +# define getenv wceex_getenv +# define strdup _strdup +# define hypot _hypot +#endif + /* some useful constants */ #define HALFPI 1.5707963267948966 #define FORTPI 0.78539816339744833 diff --git a/wince/msvc80/README.txt b/wince/msvc80/README.txt new file mode 100644 index 00000000..8579bc32 --- /dev/null +++ b/wince/msvc80/README.txt @@ -0,0 +1,23 @@ +------------------------------------------------------------------------------- +PROJ.4 port for Windows CE +Author: Mateusz Loskot (mateusz@loskot.net) +------------------------------------------------------------------------------- + +TODO - explain usage details. + +FAST NOTE: +Add project for WCELIBCEX library to the solution. +WCELIBCEX library sources are required to build PROJ.4 port for Windows CE. +You can configure projce_dll and projce_lib projects to use WCELIBCEX through +separate project file set as dependency or in binary form, +using prepared static library. + +Configure path to WCELIBCEX sources +----------------------------------- +1. Open View -> Property Manager. +2. Expand one of node under projce_dll or projce_lib project +3. Double-click on projce_common property sheet +4. Go to User Macros +5. Select WCELIBCEX_DIR macro and set path pointing directly to directory +where you downloaded the WCELIBCEX library sources tree. +6. Click OK and close the dialog box
\ No newline at end of file diff --git a/wince/msvc80/projce_common.vsprops b/wince/msvc80/projce_common.vsprops new file mode 100644 index 00000000..18865116 --- /dev/null +++ b/wince/msvc80/projce_common.vsprops @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="windows-1250"?> +<VisualStudioPropertySheet + ProjectType="Visual C++" + Version="8.00" + Name="projce_common" + > + <Tool + Name="VCCLCompilerTool" + AdditionalIncludeDirectories="$(WCELIBCEX_DIR)" + /> + <UserMacro + Name="WCELIBCEX_DIR" + Value="D:\dev\wcelibcex\_svn\wcelibcex\trunk\src" + /> +</VisualStudioPropertySheet> diff --git a/wince/msvc80/projce_dll/projce_dll.sln b/wince/msvc80/projce_dll/projce_dll.sln new file mode 100644 index 00000000..1f005aff --- /dev/null +++ b/wince/msvc80/projce_dll/projce_dll.sln @@ -0,0 +1,43 @@ + +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "projce_dll", "projce_dll.vcproj", "{A5AFA635-6DD3-4437-9115-13C9B57138BE}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{E123D79D-AEC4-4122-8F53-14BCA5E575E7}" + ProjectSection(SolutionItems) = preProject + ..\README.txt = ..\README.txt + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Pocket PC 2003 (ARMV4) = Debug|Pocket PC 2003 (ARMV4) + Debug|Smartphone 2003 (ARMV4) = Debug|Smartphone 2003 (ARMV4) + Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I) = Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I) + Release|Pocket PC 2003 (ARMV4) = Release|Pocket PC 2003 (ARMV4) + Release|Smartphone 2003 (ARMV4) = Release|Smartphone 2003 (ARMV4) + Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I) = Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I) + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Debug|Pocket PC 2003 (ARMV4).ActiveCfg = Debug|Pocket PC 2003 (ARMV4) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Debug|Pocket PC 2003 (ARMV4).Build.0 = Debug|Pocket PC 2003 (ARMV4) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Debug|Pocket PC 2003 (ARMV4).Deploy.0 = Debug|Pocket PC 2003 (ARMV4) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Debug|Smartphone 2003 (ARMV4).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Release|Pocket PC 2003 (ARMV4).ActiveCfg = Release|Pocket PC 2003 (ARMV4) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Release|Pocket PC 2003 (ARMV4).Build.0 = Release|Pocket PC 2003 (ARMV4) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Release|Pocket PC 2003 (ARMV4).Deploy.0 = Release|Pocket PC 2003 (ARMV4) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Release|Smartphone 2003 (ARMV4).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {A5AFA635-6DD3-4437-9115-13C9B57138BE}.Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/wince/msvc80/projce_dll/projce_dll.vcproj b/wince/msvc80/projce_dll/projce_dll.vcproj new file mode 100644 index 00000000..580afe47 --- /dev/null +++ b/wince/msvc80/projce_dll/projce_dll.vcproj @@ -0,0 +1,991 @@ +<?xml version="1.0" encoding="windows-1250"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="projce_dll" + ProjectGUID="{A5AFA635-6DD3-4437-9115-13C9B57138BE}" + Keyword="Win32Proj" + > + <Platforms> + <Platform + Name="Pocket PC 2003 (ARMV4)" + /> + <Platform + Name="Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Pocket PC 2003 (ARMV4)" + OutputDirectory="$(PlatformName)\$(ConfigurationName)" + IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" + ConfigurationType="2" + InheritedPropertySheets="..\projce_common.vsprops" + CharacterSet="1" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + ExecutionBucket="7" + Optimization="0" + AdditionalIncludeDirectories="..\..\..\src" + PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_WINDOWS;_USRDLL;PROJCE_DLL_EXPORTS;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE" + MinimalRebuild="true" + RuntimeLibrary="1" + BufferSecurityCheck="false" + UsePrecompiledHeader="0" + WarningLevel="3" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)" + Culture="1033" + AdditionalIncludeDirectories="$(IntDir)" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + AdditionalOptions=" /subsystem:windowsce,4.20 /machine:ARM /ARMPADCODE" + AdditionalDependencies="ccrtrtti.lib" + OutputFile="$(OutDir)/projced.dll" + LinkIncremental="2" + AdditionalLibraryDirectories="" + ModuleDefinitionFile="..\..\..\src\proj.def" + DelayLoadDLLs="$(NOINHERIT)" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(OutDir)/projce_dll.pdb" + SubSystem="0" + ImportLibrary="$(OutDir)/projced_i.lib" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCCodeSignTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + <DeploymentTool + ForceDirty="-1" + RemoteDirectory="" + RegisterOutput="0" + AdditionalFiles="" + /> + <DebuggerTool + /> + </Configuration> + <Configuration + Name="Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" + OutputDirectory="$(PlatformName)\$(ConfigurationName)" + IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" + ConfigurationType="2" + InheritedPropertySheets="..\projce_common.vsprops" + CharacterSet="1" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + ExecutionBucket="7" + Optimization="0" + AdditionalIncludeDirectories="..\..\..\src" + PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_WINDOWS;_USRDLL;PROJCE_DLL_EXPORTS;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE" + MinimalRebuild="true" + RuntimeLibrary="1" + UsePrecompiledHeader="0" + WarningLevel="3" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)" + Culture="1033" + AdditionalIncludeDirectories="$(IntDir)" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + AdditionalOptions=" /subsystem:windowsce,5.01" + OutputFile="$(OutDir)/projced.dll" + LinkIncremental="2" + DelayLoadDLLs="$(NOINHERIT)" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(OutDir)/projce_dll.pdb" + SubSystem="0" + ImportLibrary="$(OutDir)/projced_i.lib" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCCodeSignTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + <DeploymentTool + ForceDirty="-1" + RemoteDirectory="" + RegisterOutput="0" + AdditionalFiles="" + /> + <DebuggerTool + /> + </Configuration> + <Configuration + Name="Release|Pocket PC 2003 (ARMV4)" + OutputDirectory="$(PlatformName)\$(ConfigurationName)" + IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" + ConfigurationType="2" + InheritedPropertySheets="..\projce_common.vsprops" + CharacterSet="1" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + ExecutionBucket="7" + Optimization="2" + AdditionalIncludeDirectories="..\..\..\src" + PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_WINDOWS;_USRDLL;PROJCE_DLL_EXPORTS;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE" + RuntimeLibrary="0" + BufferSecurityCheck="false" + UsePrecompiledHeader="0" + WarningLevel="3" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)" + Culture="1033" + AdditionalIncludeDirectories="$(IntDir)" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + AdditionalOptions=" /subsystem:windowsce,4.20 /machine:ARM /ARMPADCODE" + OutputFile="$(OutDir)/projce.dll" + LinkIncremental="1" + ModuleDefinitionFile="..\..\..\src\proj.def" + DelayLoadDLLs="$(NOINHERIT)" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(OutDir)/projce_dll.pdb" + SubSystem="0" + OptimizeReferences="2" + EnableCOMDATFolding="2" + ImportLibrary="$(OutDir)/projce_i.lib" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCCodeSignTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + <DeploymentTool + ForceDirty="-1" + RemoteDirectory="" + RegisterOutput="0" + AdditionalFiles="" + /> + <DebuggerTool + /> + </Configuration> + <Configuration + Name="Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" + OutputDirectory="$(PlatformName)\$(ConfigurationName)" + IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" + ConfigurationType="2" + InheritedPropertySheets="..\projce_common.vsprops" + CharacterSet="1" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + ExecutionBucket="7" + Optimization="2" + AdditionalIncludeDirectories="..\..\..\src" + PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_WINDOWS;_USRDLL;PROJCE_DLL_EXPORTS;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE" + RuntimeLibrary="0" + UsePrecompiledHeader="0" + WarningLevel="3" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)" + Culture="1033" + AdditionalIncludeDirectories="$(IntDir)" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + AdditionalOptions=" /subsystem:windowsce,5.01" + OutputFile="$(OutDir)/projce.dll" + LinkIncremental="1" + DelayLoadDLLs="$(NOINHERIT)" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(OutDir)/projce_dll.pdb" + SubSystem="0" + OptimizeReferences="2" + EnableCOMDATFolding="2" + ImportLibrary="$(OutDir)/projce_i.lib" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCCodeSignTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + <DeploymentTool + ForceDirty="-1" + RemoteDirectory="" + RegisterOutput="0" + AdditionalFiles="" + /> + <DebuggerTool + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="proj" + > + <Filter + Name="src" + > + <File + RelativePath="..\..\..\src\aasincos.c" + > + </File> + <File + RelativePath="..\..\..\src\adjlon.c" + > + </File> + <File + RelativePath="..\..\..\src\bch2bps.c" + > + </File> + <File + RelativePath="..\..\..\src\bchgen.c" + > + </File> + <File + RelativePath="..\..\..\src\biveval.c" + > + </File> + <File + RelativePath="..\..\..\src\dmstor.c" + > + </File> + <File + RelativePath="..\..\..\src\emess.c" + > + </File> + <File + RelativePath="..\..\..\src\emess.h" + > + </File> + <File + RelativePath="..\..\..\src\gen_cheb.c" + > + </File> + <File + RelativePath="..\..\..\src\geocent.c" + > + </File> + <File + RelativePath="..\..\..\src\geocent.h" + > + </File> + <File + RelativePath="..\..\..\src\geod_for.c" + > + </File> + <File + RelativePath="..\..\..\src\geod_inv.c" + > + </File> + <File + RelativePath="..\..\..\src\geod_set.c" + > + </File> + <File + RelativePath="..\..\..\src\geodesic.h" + > + </File> + <File + RelativePath="..\..\..\src\hypot.c" + > + </File> + <File + RelativePath="..\..\..\src\jniproj.c" + > + </File> + <File + RelativePath="..\..\..\src\mk_cheby.c" + > + </File> + <File + RelativePath="..\..\..\src\nad_cvt.c" + > + </File> + <File + RelativePath="..\..\..\src\nad_init.c" + > + </File> + <File + RelativePath="..\..\..\src\nad_intr.c" + > + </File> + <File + RelativePath="..\..\..\src\nad_list.h" + > + </File> + <File + RelativePath="..\..\..\src\org_proj4_Projections.h" + > + </File> + <File + RelativePath="..\..\..\src\p_series.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_aea.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_aeqd.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_airy.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_aitoff.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_apply_gridshift.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_august.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_auth.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_bacon.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_bipc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_boggs.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_bonne.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_cass.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_cc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_cea.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_chamb.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_collg.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_crast.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_datum_set.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_datums.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_denoy.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_deriv.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eck1.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eck2.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eck3.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eck4.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eck5.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_ell_set.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_ellps.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eqc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eqdc.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_errno.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_factors.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_fahey.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_fouc_s.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_fwd.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_gall.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_gauss.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_geocent.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_geos.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_gins8.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_gn_sinu.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_gnom.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_goode.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_gridinfo.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_gridlist.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_hammer.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_hatano.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_imw_p.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_init.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_inv.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_krovak.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_labrd.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_laea.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_lagrng.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_larr.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_lask.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_latlong.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_lcc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_lcca.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_list.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_list.h" + > + </File> + <File + RelativePath="..\..\..\src\PJ_loxim.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_lsat.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_malloc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_mbt_fps.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_mbtfpp.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_mbtfpq.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_merc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_mill.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_mlfn.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_mod_ster.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_moll.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_mpoly.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_msfn.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_nell.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_nell_h.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_nocol.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_nsper.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_nzmg.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_ob_tran.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_ocea.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_oea.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_omerc.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_open_lib.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_ortho.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_param.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_phi2.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_poly.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_pr_list.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_putp2.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_putp3.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_putp4p.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_putp5.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_putp6.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_qsfn.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_release.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_robin.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_rpoly.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_sconics.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_somerc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_stere.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_sterea.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_strerrno.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_sts.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_tcc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_tcea.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_tmerc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_tpeqd.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_transform.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_tsfn.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_units.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_urm5.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_urmfps.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_utils.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_vandg.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_vandg2.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_vandg4.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_wag2.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_wag3.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_wag7.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_wink1.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_wink2.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_zpoly1.c" + > + </File> + <File + RelativePath="..\..\..\src\proj.def" + > + </File> + <File + RelativePath="..\..\..\src\proj_api.h" + > + </File> + <File + RelativePath="..\..\..\src\proj_config.h" + > + </File> + <File + RelativePath="..\..\..\src\proj_mdist.c" + > + </File> + <File + RelativePath="..\..\..\src\proj_rouss.c" + > + </File> + <File + RelativePath="..\..\..\src\projects.h" + > + </File> + <File + RelativePath="..\..\..\src\rtodms.c" + > + </File> + <File + RelativePath="..\..\..\src\vector1.c" + > + </File> + </Filter> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> diff --git a/wince/msvc80/projce_lib/projce_lib.sln b/wince/msvc80/projce_lib/projce_lib.sln new file mode 100644 index 00000000..df950009 --- /dev/null +++ b/wince/msvc80/projce_lib/projce_lib.sln @@ -0,0 +1,43 @@ + +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "projce_lib", "projce_lib.vcproj", "{E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{1619681D-2192-42F6-AF3E-7016F3735D5E}" + ProjectSection(SolutionItems) = preProject + ..\README.txt = ..\README.txt + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Pocket PC 2003 (ARMV4) = Debug|Pocket PC 2003 (ARMV4) + Debug|Smartphone 2003 (ARMV4) = Debug|Smartphone 2003 (ARMV4) + Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I) = Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I) + Release|Pocket PC 2003 (ARMV4) = Release|Pocket PC 2003 (ARMV4) + Release|Smartphone 2003 (ARMV4) = Release|Smartphone 2003 (ARMV4) + Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I) = Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I) + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Debug|Pocket PC 2003 (ARMV4).ActiveCfg = Debug|Pocket PC 2003 (ARMV4) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Debug|Pocket PC 2003 (ARMV4).Build.0 = Debug|Pocket PC 2003 (ARMV4) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Debug|Pocket PC 2003 (ARMV4).Deploy.0 = Debug|Pocket PC 2003 (ARMV4) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Debug|Smartphone 2003 (ARMV4).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Release|Pocket PC 2003 (ARMV4).ActiveCfg = Release|Pocket PC 2003 (ARMV4) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Release|Pocket PC 2003 (ARMV4).Build.0 = Release|Pocket PC 2003 (ARMV4) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Release|Pocket PC 2003 (ARMV4).Deploy.0 = Release|Pocket PC 2003 (ARMV4) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Release|Smartphone 2003 (ARMV4).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}.Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/wince/msvc80/projce_lib/projce_lib.vcproj b/wince/msvc80/projce_lib/projce_lib.vcproj new file mode 100644 index 00000000..13f00e35 --- /dev/null +++ b/wince/msvc80/projce_lib/projce_lib.vcproj @@ -0,0 +1,955 @@ +<?xml version="1.0" encoding="windows-1250"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="projce_lib" + ProjectGUID="{E33BA2AA-25D9-48B1-A9FB-F77EB915AD72}" + Keyword="Win32Proj" + > + <Platforms> + <Platform + Name="Pocket PC 2003 (ARMV4)" + /> + <Platform + Name="Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Pocket PC 2003 (ARMV4)" + OutputDirectory="$(PlatformName)\$(ConfigurationName)" + IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" + ConfigurationType="4" + InheritedPropertySheets="..\projce_common.vsprops" + CharacterSet="1" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + ExecutionBucket="7" + Optimization="0" + AdditionalIncludeDirectories="..\..\..\src" + PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE" + IgnoreStandardIncludePath="false" + GeneratePreprocessedFile="0" + MinimalRebuild="true" + RuntimeLibrary="1" + UsePrecompiledHeader="0" + WarningLevel="3" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)" + Culture="1033" + AdditionalIncludeDirectories="$(IntDir)" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLibrarianTool" + AdditionalOptions=" /subsystem:windowsce,4.20 /machine:ARM" + OutputFile="$(OutDir)/projced.lib" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCCodeSignTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + <DeploymentTool + ForceDirty="-1" + RemoteDirectory="" + RegisterOutput="0" + AdditionalFiles="" + /> + <DebuggerTool + /> + </Configuration> + <Configuration + Name="Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" + OutputDirectory="$(PlatformName)\$(ConfigurationName)" + IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" + ConfigurationType="4" + InheritedPropertySheets="..\projce_common.vsprops" + CharacterSet="1" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + ExecutionBucket="7" + Optimization="0" + AdditionalIncludeDirectories="..\..\..\src" + PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE" + MinimalRebuild="true" + RuntimeLibrary="1" + UsePrecompiledHeader="0" + WarningLevel="3" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)" + Culture="1033" + AdditionalIncludeDirectories="$(IntDir)" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLibrarianTool" + AdditionalOptions=" /subsystem:windowsce,5.01" + OutputFile="$(OutDir)/projced.lib" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCCodeSignTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + <DeploymentTool + ForceDirty="-1" + RemoteDirectory="" + RegisterOutput="0" + AdditionalFiles="" + /> + <DebuggerTool + /> + </Configuration> + <Configuration + Name="Release|Pocket PC 2003 (ARMV4)" + OutputDirectory="$(PlatformName)\$(ConfigurationName)" + IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" + ConfigurationType="4" + InheritedPropertySheets="..\projce_common.vsprops" + CharacterSet="1" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + ExecutionBucket="7" + Optimization="2" + AdditionalIncludeDirectories="..\..\..\src" + PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE" + RuntimeLibrary="0" + UsePrecompiledHeader="0" + WarningLevel="3" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)" + Culture="1033" + AdditionalIncludeDirectories="$(IntDir)" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLibrarianTool" + AdditionalOptions=" /subsystem:windowsce,4.20 /machine:ARM" + OutputFile="$(OutDir)/projce.lib" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCCodeSignTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + <DeploymentTool + ForceDirty="-1" + RemoteDirectory="" + RegisterOutput="0" + AdditionalFiles="" + /> + <DebuggerTool + /> + </Configuration> + <Configuration + Name="Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" + OutputDirectory="$(PlatformName)\$(ConfigurationName)" + IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" + ConfigurationType="4" + InheritedPropertySheets="..\projce_common.vsprops" + CharacterSet="1" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + ExecutionBucket="7" + Optimization="2" + AdditionalIncludeDirectories="..\..\..\src" + PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE" + RuntimeLibrary="0" + UsePrecompiledHeader="0" + WarningLevel="3" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)" + Culture="1033" + AdditionalIncludeDirectories="$(IntDir)" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLibrarianTool" + AdditionalOptions=" /subsystem:windowsce,5.01" + OutputFile="$(OutDir)/projce.lib" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCCodeSignTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + <DeploymentTool + ForceDirty="-1" + RemoteDirectory="" + RegisterOutput="0" + AdditionalFiles="" + /> + <DebuggerTool + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="proj" + > + <Filter + Name="src" + > + <File + RelativePath="..\..\..\src\aasincos.c" + > + </File> + <File + RelativePath="..\..\..\src\adjlon.c" + > + </File> + <File + RelativePath="..\..\..\src\bch2bps.c" + > + </File> + <File + RelativePath="..\..\..\src\bchgen.c" + > + </File> + <File + RelativePath="..\..\..\src\biveval.c" + > + </File> + <File + RelativePath="..\..\..\src\dmstor.c" + > + </File> + <File + RelativePath="..\..\..\src\emess.c" + > + </File> + <File + RelativePath="..\..\..\src\emess.h" + > + </File> + <File + RelativePath="..\..\..\src\gen_cheb.c" + > + </File> + <File + RelativePath="..\..\..\src\geocent.c" + > + </File> + <File + RelativePath="..\..\..\src\geocent.h" + > + </File> + <File + RelativePath="..\..\..\src\geod_for.c" + > + </File> + <File + RelativePath="..\..\..\src\geod_inv.c" + > + </File> + <File + RelativePath="..\..\..\src\geod_set.c" + > + </File> + <File + RelativePath="..\..\..\src\geodesic.h" + > + </File> + <File + RelativePath="..\..\..\src\hypot.c" + > + </File> + <File + RelativePath="..\..\..\src\jniproj.c" + > + </File> + <File + RelativePath="..\..\..\src\mk_cheby.c" + > + </File> + <File + RelativePath="..\..\..\src\nad_cvt.c" + > + </File> + <File + RelativePath="..\..\..\src\nad_init.c" + > + </File> + <File + RelativePath="..\..\..\src\nad_intr.c" + > + </File> + <File + RelativePath="..\..\..\src\nad_list.h" + > + </File> + <File + RelativePath="..\..\..\src\org_proj4_Projections.h" + > + </File> + <File + RelativePath="..\..\..\src\p_series.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_aea.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_aeqd.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_airy.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_aitoff.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_apply_gridshift.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_august.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_auth.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_bacon.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_bipc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_boggs.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_bonne.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_cass.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_cc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_cea.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_chamb.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_collg.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_crast.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_datum_set.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_datums.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_denoy.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_deriv.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eck1.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eck2.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eck3.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eck4.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eck5.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_ell_set.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_ellps.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eqc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_eqdc.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_errno.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_factors.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_fahey.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_fouc_s.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_fwd.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_gall.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_gauss.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_geocent.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_geos.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_gins8.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_gn_sinu.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_gnom.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_goode.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_gridinfo.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_gridlist.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_hammer.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_hatano.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_imw_p.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_init.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_inv.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_krovak.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_labrd.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_laea.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_lagrng.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_larr.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_lask.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_latlong.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_lcc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_lcca.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_list.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_list.h" + > + </File> + <File + RelativePath="..\..\..\src\PJ_loxim.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_lsat.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_malloc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_mbt_fps.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_mbtfpp.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_mbtfpq.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_merc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_mill.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_mlfn.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_mod_ster.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_moll.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_mpoly.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_msfn.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_nell.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_nell_h.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_nocol.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_nsper.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_nzmg.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_ob_tran.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_ocea.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_oea.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_omerc.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_open_lib.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_ortho.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_param.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_phi2.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_poly.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_pr_list.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_putp2.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_putp3.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_putp4p.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_putp5.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_putp6.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_qsfn.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_release.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_robin.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_rpoly.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_sconics.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_somerc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_stere.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_sterea.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_strerrno.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_sts.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_tcc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_tcea.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_tmerc.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_tpeqd.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_transform.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_tsfn.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_units.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_urm5.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_urmfps.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_utils.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_vandg.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_vandg2.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_vandg4.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_wag2.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_wag3.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_wag7.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_wink1.c" + > + </File> + <File + RelativePath="..\..\..\src\PJ_wink2.c" + > + </File> + <File + RelativePath="..\..\..\src\pj_zpoly1.c" + > + </File> + <File + RelativePath="..\..\..\src\proj_api.h" + > + </File> + <File + RelativePath="..\..\..\src\proj_config.h" + > + </File> + <File + RelativePath="..\..\..\src\proj_mdist.c" + > + </File> + <File + RelativePath="..\..\..\src\proj_rouss.c" + > + </File> + <File + RelativePath="..\..\..\src\projects.h" + > + </File> + <File + RelativePath="..\..\..\src\rtodms.c" + > + </File> + <File + RelativePath="..\..\..\src\vector1.c" + > + </File> + </Filter> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> |
