diff options
| author | Mateusz Loskot <mateusz@loskot.net> | 2018-02-01 20:09:08 +0100 |
|---|---|---|
| committer | Mateusz Loskot <mateusz@loskot.net> | 2018-02-01 20:09:08 +0100 |
| commit | 56600aadd345a984c1f5a1f42b7932e67c9bee03 (patch) | |
| tree | ef1f29514b4e3038536509de868b4ae0deaf9d46 | |
| parent | dd9cd3f821295f4095d3a261bfd9be26065e60b7 (diff) | |
| download | PROJ-56600aadd345a984c1f5a1f42b7932e67c9bee03.tar.gz PROJ-56600aadd345a984c1f5a1f42b7932e67c9bee03.zip | |
Remove Windows CE cruft (wince/msvc80)
Closes #582
| -rw-r--r-- | src/pj_open_lib.c | 5 | ||||
| -rw-r--r-- | src/pj_strtod.c | 2 | ||||
| -rw-r--r-- | src/proj_config.h.wince | 66 | ||||
| -rw-r--r-- | src/projects.h | 12 | ||||
| -rw-r--r-- | wince/msvc80/README.txt | 77 | ||||
| -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 | 411 | ||||
| -rw-r--r-- | wince/msvc80/projce_lib/projce_lib.sln | 43 | ||||
| -rw-r--r-- | wince/msvc80/projce_lib/projce_lib.vcproj | 411 |
10 files changed, 3 insertions, 1082 deletions
diff --git a/src/pj_open_lib.c b/src/pj_open_lib.c index 4eaefba1..054853c6 100644 --- a/src/pj_open_lib.c +++ b/src/pj_open_lib.c @@ -118,8 +118,6 @@ pj_open_lib_ex(projCtx ctx, const char *name, const char *mode, static const char dir_chars[] = "/"; #endif -#ifndef _WIN32_WCE - if( out_full_filename != NULL && out_full_filename_size > 0 ) out_full_filename[0] = '\0'; @@ -205,9 +203,6 @@ pj_open_lib_ex(projCtx ctx, const char *name, const char *mode, fid == NULL ? "failed" : "succeeded" ); return(fid); -#else - return NULL; -#endif /* _WIN32_WCE */ } /************************************************************************/ diff --git a/src/pj_strtod.c b/src/pj_strtod.c index 4c03a661..90d0b2e5 100644 --- a/src/pj_strtod.c +++ b/src/pj_strtod.c @@ -75,7 +75,7 @@ double pj_atof( const char* nptr ) static char* pj_replace_point_by_locale_point(const char* pszNumber, char point, char* pszWorkBuffer) { -#if !defined(HAVE_LOCALECONV) || defined(_WIN32_WCE) +#if !defined(HAVE_LOCALECONV) #if defined(_MSC_VER) /* Visual C++ */ #pragma message("localeconv not available") diff --git a/src/proj_config.h.wince b/src/proj_config.h.wince deleted file mode 100644 index 9e2c8a67..00000000 --- a/src/proj_config.h.wince +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Windows CE platform config. - */ -#ifndef _WIN32_WCE -# error This version of proj_config.h header is dedicated for Windows CE platform! -#endif - -/* Define to 1 if you have the <dlfcn.h> header file. */ -#undef HAVE_DLFCN_H - -/* Define to 1 if you have the <inttypes.h> header file. */ -#undef HAVE_INTTYPES_H - -/* Define to 1 if you have the `m' library (-lm). */ -#undef HAVE_LIBM - -/* Define to 1 if you have the <memory.h> header file. */ -#undef HAVE_MEMORY_H - -/* Define to 1 if you have the <stdint.h> header file. */ -#undef HAVE_STDINT_H - -/* Define to 1 if you have the <stdlib.h> header file. */ -#define HAVE_STDLIB_H - -/* Define to 1 if you have the <strings.h> header file. */ -#undef HAVE_STRINGS_H - -/* Define to 1 if you have the <string.h> header file. */ -#define HAVE_STRING_H - -/* Define to 1 if you have the <sys/stat.h> header file. */ -#define HAVE_SYS_STAT_H - -/* Define to 1 if you have the <sys/types.h> header file. */ -#define HAVE_SYS_TYPES_H - -/* Define to 1 if you have the <unistd.h> header file. */ -#undef HAVE_UNISTD_H - -/* Enabled for Java/JNI Support */ -#undef JNI_ENABLED - -/* Name of package */ -#undef PACKAGE - -/* Define to the address where bug reports for this package should be sent. */ -#undef PACKAGE_BUGREPORT - -/* Define to the full name of this package. */ -#undef PACKAGE_NAME - -/* Define to the full name and version of this package. */ -#undef PACKAGE_STRING - -/* Define to the one symbol short name of this package. */ -#undef PACKAGE_TARNAME - -/* Define to the version of this package. */ -#undef PACKAGE_VERSION - -/* Define to 1 if you have the ANSI C header files. */ -#undef STDC_HEADERS - -/* Version number of package */ -#undef VERSION diff --git a/src/projects.h b/src/projects.h index f22ae3a5..41f4aa3c 100644 --- a/src/projects.h +++ b/src/projects.h @@ -97,14 +97,6 @@ typedef long pj_int32; 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 hypot _hypot -#endif - /* If we still haven't got M_PI*, we rely on our own defines. * For example, this is necessary when compiling with gcc and * the -ansi flag. @@ -136,11 +128,11 @@ extern double hypot(double, double); #endif /* Use WIN32 as a standard windows 32 bit declaration */ -#if defined(_WIN32) && !defined(WIN32) && !defined(_WIN32_WCE) +#if defined(_WIN32) && !defined(WIN32) # define WIN32 #endif -#if defined(_WINDOWS) && !defined(WIN32) && !defined(_WIN32_WCE) +#if defined(_WINDOWS) && !defined(WIN32) # define WIN32 #endif diff --git a/wince/msvc80/README.txt b/wince/msvc80/README.txt deleted file mode 100644 index 46f42ba6..00000000 --- a/wince/msvc80/README.txt +++ /dev/null @@ -1,77 +0,0 @@ -------------------------------------------------------------------------------- -PROJ.4 port for Windows CE -Author: Mateusz Loskot (mateusz@loskot.net) -------------------------------------------------------------------------------- - -This readme explains how to build PROJ.4 for Windows CE based -operating systems like Windows Mobile and custom versions. - ------------------------------------ -Building PROJ.4 for Windows CE ------------------------------------ - -Currently, project files for Microsoft Visual C++ 2005 are provided. -Although, PROJ.4 will build using Microsoft eMbedded Visual C++ 3.0 or 4.0 as well. - -1. Requirements - -In order to build PROJ.4 for Windows CE you need to download WCELIBCEX library - -http://sourceforge.net/projects/wcelibcex - -The WCELIBCEX is a library providing helpful features while -porting Windows/Unix libraries to Windows CE and can be downloaded -directly from Subversion repository: - -svn co https://wcelibcex.svn.sourceforge.net/svnroot/wcelibcex/trunk/ wcelibcex - -or as a source distribution package - wcelibcex-1.0.zip - from Download link. - -Next, you will find project file of static library for Visual C+ 2005 -located in wcelibcex/msvc80. - -2. Configure WCELIBCEX - -2.1 Open one of solutions for PROJ.4: projce_dll.sln or projce_lib.sln - in the Visual C++ 2005 IDE. - -2.2 Add WCELIBCEX project to the PORJ.4 solution by selecting wcelibcex_lib.vcproj file. - -2.3 Configure WCELIBCEX_DIR path in projce_common.vsprops Property Sheet: - - 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 - -3. Build - -Select Build -> Build Solution - -4. Output binaries: - -4.1 projce_lib.sln - static library - -projced.lib - Debug configuration -projce.lib - Release configuration - -4.2 projce_dll.sln - Dynamic-link library - -proj_i.lib - import library -proj.dll - dynamic-link library - -NOTE: There is no 'ced' or 'ce' token in DLL binaries names. - This is intentional and don't change it. - GDAL requires PROJ.4 DLL named as proj.dll. - ------------------------------------ -Notes ------------------------------------ - -Preferable place to ask for help, is the official mailing -list - proj@lists.maptools.org - -Author: Mateusz Loskot <mateusz@loskot.net> diff --git a/wince/msvc80/projce_common.vsprops b/wince/msvc80/projce_common.vsprops deleted file mode 100644 index d90192bb..00000000 --- a/wince/msvc80/projce_common.vsprops +++ /dev/null @@ -1,15 +0,0 @@ -<?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="C:\dev\wcelibcex-1.0\src" - /> -</VisualStudioPropertySheet> diff --git a/wince/msvc80/projce_dll/projce_dll.sln b/wince/msvc80/projce_dll/projce_dll.sln deleted file mode 100644 index 1f005aff..00000000 --- a/wince/msvc80/projce_dll/projce_dll.sln +++ /dev/null @@ -1,43 +0,0 @@ - -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 deleted file mode 100644 index fceb5802..00000000 --- a/wince/msvc80/projce_dll/projce_dll.vcproj +++ /dev/null @@ -1,411 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<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)/proj.dll" LinkIncremental="2" AdditionalLibraryDirectories="" ModuleDefinitionFile="..\..\..\src\proj.def" DelayLoadDLLs="$(NOINHERIT)" GenerateDebugInformation="true" ProgramDatabaseFile="$(OutDir)/proj_dll.pdb" SubSystem="0" ImportLibrary="$(OutDir)/proj_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)/proj.dll" LinkIncremental="2" DelayLoadDLLs="$(NOINHERIT)" GenerateDebugInformation="true" ProgramDatabaseFile="$(OutDir)/projce_dll.pdb" SubSystem="0" ImportLibrary="$(OutDir)/proj_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)/proj.dll" LinkIncremental="1" ModuleDefinitionFile="..\..\..\src\proj.def" DelayLoadDLLs="$(NOINHERIT)" GenerateDebugInformation="true" ProgramDatabaseFile="$(OutDir)/projce_dll.pdb" SubSystem="0" OptimizeReferences="2" EnableCOMDATFolding="2" ImportLibrary="$(OutDir)/proj_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)/proj.dll" LinkIncremental="1" DelayLoadDLLs="$(NOINHERIT)" GenerateDebugInformation="true" ProgramDatabaseFile="$(OutDir)/projce_dll.pdb" SubSystem="0" OptimizeReferences="2" EnableCOMDATFolding="2" ImportLibrary="$(OutDir)/proj_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\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_fwd3d.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_inv3d.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_sch.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 deleted file mode 100644 index df950009..00000000 --- a/wince/msvc80/projce_lib/projce_lib.sln +++ /dev/null @@ -1,43 +0,0 @@ - -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 deleted file mode 100644 index c5c962d7..00000000 --- a/wince/msvc80/projce_lib/projce_lib.vcproj +++ /dev/null @@ -1,411 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<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_fwd3d.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_inv3d.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_sch.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> |
