diff options
author | Cory Fields <theuni-nospam-@xbmc.org> | 2011-01-04 12:39:23 -0500 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2011-01-04 12:39:23 -0500 |
commit | a9839fa95cb9711efe465ca8e137c34247238485 (patch) | |
tree | 0bb8dc55aa317c9cc9191ea85e8298c2da90b06b /lib/cpluff | |
parent | 07db21c48d60933b45c702d333572ed8f4629fdc (diff) |
Fix CRLF
Diffstat (limited to 'lib/cpluff')
-rw-r--r-- | lib/cpluff/examples/Makefile.nmake | 18 | ||||
-rwxr-xr-x | lib/cpluff/examples/common.nmake | 98 | ||||
-rw-r--r-- | lib/cpluff/examples/cpfile/Makefile.nmake | 26 | ||||
-rw-r--r-- | lib/cpluff/examples/cpfile/plugins/Makefile.nmake | 18 | ||||
-rw-r--r-- | lib/cpluff/examples/cpfile/plugins/cext/Makefile.nmake | 30 | ||||
-rw-r--r-- | lib/cpluff/examples/cpfile/plugins/core/Makefile.nmake | 50 | ||||
-rw-r--r-- | lib/cpluff/examples/cpfile/plugins/extension/Makefile.nmake | 54 | ||||
-rw-r--r-- | lib/cpluff/examples/cpfile/plugins/special/Makefile.nmake | 54 | ||||
-rwxr-xr-x | lib/cpluff/examples/nmakedir.bat | 22 | ||||
-rw-r--r-- | lib/cpluff/libcpluff/pcontrol.c | 4 | ||||
-rw-r--r-- | lib/cpluff/libcpluff/win32/cpluff.vcproj | 572 | ||||
-rw-r--r-- | lib/cpluff/libcpluff/win32/cpluff.vcxproj | 282 |
12 files changed, 614 insertions, 614 deletions
diff --git a/lib/cpluff/examples/Makefile.nmake b/lib/cpluff/examples/Makefile.nmake index 1f87419915..bda7692cbf 100644 --- a/lib/cpluff/examples/Makefile.nmake +++ b/lib/cpluff/examples/Makefile.nmake @@ -1,9 +1,9 @@ -# C-Pluff examples build system for MSVC
-# Copyright 2007 Johannes Lehtinen
-# This file is free software; Johannes Lehtinen gives unlimited permission
-# to copy, distribute and modify it.
-
-SUBDIRS = cpfile
-TOP = .
-
-include common.nmake
+# C-Pluff examples build system for MSVC +# Copyright 2007 Johannes Lehtinen +# This file is free software; Johannes Lehtinen gives unlimited permission +# to copy, distribute and modify it. + +SUBDIRS = cpfile +TOP = . + +include common.nmake diff --git a/lib/cpluff/examples/common.nmake b/lib/cpluff/examples/common.nmake index 4f3ac2c21c..6ecafe7767 100755 --- a/lib/cpluff/examples/common.nmake +++ b/lib/cpluff/examples/common.nmake @@ -1,49 +1,49 @@ -# C-Pluff examples build system for MSVC
-# Copyright 2007 Johannes Lehtinen
-# This file is free software; Johannes Lehtinen gives unlimited permission
-# to copy, distribute and modify it.
-
-
-# Build settings, modify as necessary
-# -----------------------------------
-
-# Each Makefile.nmake sets $(TOP) as path to top level examples directory
-
-# $(cpprefix) is the top directory of C-Pluff installation
-cpprefix = $(TOP)\..\..\..\..
-
-# $(cpincdir) is the include directory of C-Pluff installation
-cpincdir = $(cpprefix)\include
-
-# $(cplibdir) is the library directory of C-Pluff installation
-cplibdir = $(cpprefix)\lib
-
-# $(prefix) is the top installation directory for C-Pluff examples
-prefix = $(cpprefix)
-
-# $(bindir) is the installation directory for C-Pluff example binaries
-bindir = $(prefix)\bin
-
-# Define compiler and flags
-CC = cl
-CFLAGS = /nologo /I$(cpincdir)
-
-
-# Common build rules, no need to modify
-# -------------------------------------
-
-# Windows has stat(2)
-CFLAGS = $(CFLAGS) /DHAVE_STAT
-
-RECURSIVE_RULES = all install clean
-
-$(RECURSIVE_RULES):
- @if not "$(SUBDIRS)"=="" @for %d in ($(SUBDIRS)) do @$(TOP)\nmakedir %d $@
- @echo Making $@ in .
- @nmake /nologo /f Makefile.nmake $@-local
-
-all-local:
-
-install-local: all-local
-
-clean-local:
+# C-Pluff examples build system for MSVC +# Copyright 2007 Johannes Lehtinen +# This file is free software; Johannes Lehtinen gives unlimited permission +# to copy, distribute and modify it. + + +# Build settings, modify as necessary +# ----------------------------------- + +# Each Makefile.nmake sets $(TOP) as path to top level examples directory + +# $(cpprefix) is the top directory of C-Pluff installation +cpprefix = $(TOP)\..\..\..\.. + +# $(cpincdir) is the include directory of C-Pluff installation +cpincdir = $(cpprefix)\include + +# $(cplibdir) is the library directory of C-Pluff installation +cplibdir = $(cpprefix)\lib + +# $(prefix) is the top installation directory for C-Pluff examples +prefix = $(cpprefix) + +# $(bindir) is the installation directory for C-Pluff example binaries +bindir = $(prefix)\bin + +# Define compiler and flags +CC = cl +CFLAGS = /nologo /I$(cpincdir) + + +# Common build rules, no need to modify +# ------------------------------------- + +# Windows has stat(2) +CFLAGS = $(CFLAGS) /DHAVE_STAT + +RECURSIVE_RULES = all install clean + +$(RECURSIVE_RULES): + @if not "$(SUBDIRS)"=="" @for %d in ($(SUBDIRS)) do @$(TOP)\nmakedir %d $@ + @echo Making $@ in . + @nmake /nologo /f Makefile.nmake $@-local + +all-local: + +install-local: all-local + +clean-local: diff --git a/lib/cpluff/examples/cpfile/Makefile.nmake b/lib/cpluff/examples/cpfile/Makefile.nmake index c7e89abfcd..6f42a1dbfd 100644 --- a/lib/cpluff/examples/cpfile/Makefile.nmake +++ b/lib/cpluff/examples/cpfile/Makefile.nmake @@ -1,13 +1,13 @@ -# C-Pluff examples build system for MSVC
-# Copyright 2007 Johannes Lehtinen
-# This file is free software; Johannes Lehtinen gives unlimited permission
-# to copy, distribute and modify it.
-
-SUBDIRS = plugins
-TOP = ..
-
-include ..\common.nmake
-
-install-local: all-local
- if not exist $(bindir) mkdir $(bindir)
- copy /y cpfile.bat $(bindir)
+# C-Pluff examples build system for MSVC +# Copyright 2007 Johannes Lehtinen +# This file is free software; Johannes Lehtinen gives unlimited permission +# to copy, distribute and modify it. + +SUBDIRS = plugins +TOP = .. + +include ..\common.nmake + +install-local: all-local + if not exist $(bindir) mkdir $(bindir) + copy /y cpfile.bat $(bindir) diff --git a/lib/cpluff/examples/cpfile/plugins/Makefile.nmake b/lib/cpluff/examples/cpfile/plugins/Makefile.nmake index 2dda56e1ca..b60d59a86b 100644 --- a/lib/cpluff/examples/cpfile/plugins/Makefile.nmake +++ b/lib/cpluff/examples/cpfile/plugins/Makefile.nmake @@ -1,9 +1,9 @@ -# C-Pluff examples build system for MSVC
-# Copyright 2007 Johannes Lehtinen
-# This file is free software; Johannes Lehtinen gives unlimited permission
-# to copy, distribute and modify it.
-
-SUBDIRS = core special extension cext
-TOP = ..\..
-
-include ..\..\common.nmake
+# C-Pluff examples build system for MSVC +# Copyright 2007 Johannes Lehtinen +# This file is free software; Johannes Lehtinen gives unlimited permission +# to copy, distribute and modify it. + +SUBDIRS = core special extension cext +TOP = ..\.. + +include ..\..\common.nmake diff --git a/lib/cpluff/examples/cpfile/plugins/cext/Makefile.nmake b/lib/cpluff/examples/cpfile/plugins/cext/Makefile.nmake index 638be08244..e2e1a2e3e7 100644 --- a/lib/cpluff/examples/cpfile/plugins/cext/Makefile.nmake +++ b/lib/cpluff/examples/cpfile/plugins/cext/Makefile.nmake @@ -1,15 +1,15 @@ -# C-Pluff examples build system for MSVC
-# Copyright 2007 Johannes Lehtinen
-# This file is free software; Johannes Lehtinen gives unlimited permission
-# to copy, distribute and modify it.
-
-TOP = ..\..\..
-
-include ..\..\..\common.nmake
-
-pluginsdir = $(bindir)\cpfile\plugins
-plugindir = $(pluginsdir)\cext
-
-install-local: all-local
- if not exist $(plugindir) mkdir $(plugindir)
- for %f in (plugin.xml) do copy /y %f $(plugindir)
+# C-Pluff examples build system for MSVC +# Copyright 2007 Johannes Lehtinen +# This file is free software; Johannes Lehtinen gives unlimited permission +# to copy, distribute and modify it. + +TOP = ..\..\.. + +include ..\..\..\common.nmake + +pluginsdir = $(bindir)\cpfile\plugins +plugindir = $(pluginsdir)\cext + +install-local: all-local + if not exist $(plugindir) mkdir $(plugindir) + for %f in (plugin.xml) do copy /y %f $(plugindir) diff --git a/lib/cpluff/examples/cpfile/plugins/core/Makefile.nmake b/lib/cpluff/examples/cpfile/plugins/core/Makefile.nmake index dad5943c6a..3857fb855a 100644 --- a/lib/cpluff/examples/cpfile/plugins/core/Makefile.nmake +++ b/lib/cpluff/examples/cpfile/plugins/core/Makefile.nmake @@ -1,25 +1,25 @@ -# C-Pluff examples build system for MSVC
-# Copyright 2007 Johannes Lehtinen
-# This file is free software; Johannes Lehtinen gives unlimited permission
-# to copy, distribute and modify it.
-
-TOP = ..\..\..
-
-include ..\..\..\common.nmake
-
-pluginsdir = $(bindir)\cpfile\plugins
-plugindir = $(pluginsdir)\core
-
-libcore_OBJS = core.obj
-
-all-local: libcore.dll
-
-install-local: all-local
- if not exist $(plugindir) mkdir $(plugindir)
- for %f in (plugin.xml classifiers.xsd libcore.dll) do copy /y %f $(plugindir)
-
-clean-local:
- for %f in ($(libcore_OBJS) libcore.*) do if exist %f del %f
-
-libcore.dll: $(libcore_OBJS)
- cl /nologo /LD /MD /Fe$@ $(libcore_OBJS) $(cplibdir)\libcpluff.lib
+# C-Pluff examples build system for MSVC +# Copyright 2007 Johannes Lehtinen +# This file is free software; Johannes Lehtinen gives unlimited permission +# to copy, distribute and modify it. + +TOP = ..\..\.. + +include ..\..\..\common.nmake + +pluginsdir = $(bindir)\cpfile\plugins +plugindir = $(pluginsdir)\core + +libcore_OBJS = core.obj + +all-local: libcore.dll + +install-local: all-local + if not exist $(plugindir) mkdir $(plugindir) + for %f in (plugin.xml classifiers.xsd libcore.dll) do copy /y %f $(plugindir) + +clean-local: + for %f in ($(libcore_OBJS) libcore.*) do if exist %f del %f + +libcore.dll: $(libcore_OBJS) + cl /nologo /LD /MD /Fe$@ $(libcore_OBJS) $(cplibdir)\libcpluff.lib diff --git a/lib/cpluff/examples/cpfile/plugins/extension/Makefile.nmake b/lib/cpluff/examples/cpfile/plugins/extension/Makefile.nmake index b6829b89f7..60a9313939 100644 --- a/lib/cpluff/examples/cpfile/plugins/extension/Makefile.nmake +++ b/lib/cpluff/examples/cpfile/plugins/extension/Makefile.nmake @@ -1,27 +1,27 @@ -# C-Pluff examples build system for MSVC
-# Copyright 2007 Johannes Lehtinen
-# This file is free software; Johannes Lehtinen gives unlimited permission
-# to copy, distribute and modify it.
-
-TOP = ..\..\..
-
-include ..\..\..\common.nmake
-
-CFLAGS = /I..\core $(CFLAGS)
-
-pluginsdir = $(bindir)\cpfile\plugins
-plugindir = $(pluginsdir)\extension
-
-libextension_OBJS = extension.obj
-
-all-local: libextension.dll
-
-install-local: all-local
- if not exist $(plugindir) mkdir $(plugindir)
- for %f in (plugin.xml file_types.xsd libextension.dll) do copy /y %f $(plugindir)
-
-clean-local:
- for %f in ($(libextension_OBJS) libextension.*) do if exist %f del %f
-
-libextension.dll: $(libextension_OBJS)
- cl /nologo /LD /MD /Fe$@ $(libextension_OBJS) $(cplibdir)\libcpluff.lib
+# C-Pluff examples build system for MSVC +# Copyright 2007 Johannes Lehtinen +# This file is free software; Johannes Lehtinen gives unlimited permission +# to copy, distribute and modify it. + +TOP = ..\..\.. + +include ..\..\..\common.nmake + +CFLAGS = /I..\core $(CFLAGS) + +pluginsdir = $(bindir)\cpfile\plugins +plugindir = $(pluginsdir)\extension + +libextension_OBJS = extension.obj + +all-local: libextension.dll + +install-local: all-local + if not exist $(plugindir) mkdir $(plugindir) + for %f in (plugin.xml file_types.xsd libextension.dll) do copy /y %f $(plugindir) + +clean-local: + for %f in ($(libextension_OBJS) libextension.*) do if exist %f del %f + +libextension.dll: $(libextension_OBJS) + cl /nologo /LD /MD /Fe$@ $(libextension_OBJS) $(cplibdir)\libcpluff.lib diff --git a/lib/cpluff/examples/cpfile/plugins/special/Makefile.nmake b/lib/cpluff/examples/cpfile/plugins/special/Makefile.nmake index 39f3a46365..e969ae46a1 100644 --- a/lib/cpluff/examples/cpfile/plugins/special/Makefile.nmake +++ b/lib/cpluff/examples/cpfile/plugins/special/Makefile.nmake @@ -1,27 +1,27 @@ -# C-Pluff examples build system for MSVC
-# Copyright 2007 Johannes Lehtinen
-# This file is free software; Johannes Lehtinen gives unlimited permission
-# to copy, distribute and modify it.
-
-TOP = ..\..\..
-
-include ..\..\..\common.nmake
-
-CFLAGS = /I..\core $(CFLAGS)
-
-pluginsdir = $(bindir)\cpfile\plugins
-plugindir = $(pluginsdir)\special
-
-libspecial_OBJS = special.obj
-
-all-local: libspecial.dll
-
-install-local: all-local
- if not exist $(plugindir) mkdir $(plugindir)
- for %f in (plugin.xml libspecial.dll) do copy /y %f $(plugindir)
-
-clean-local:
- for %f in ($(libspecial_OBJS) libspecial.*) do if exist %f del %f
-
-libspecial.dll: $(libspecial_OBJS)
- cl /nologo /LD /MD /Fe$@ $(libspecial_OBJS) $(cplibdir)\libcpluff.lib
+# C-Pluff examples build system for MSVC +# Copyright 2007 Johannes Lehtinen +# This file is free software; Johannes Lehtinen gives unlimited permission +# to copy, distribute and modify it. + +TOP = ..\..\.. + +include ..\..\..\common.nmake + +CFLAGS = /I..\core $(CFLAGS) + +pluginsdir = $(bindir)\cpfile\plugins +plugindir = $(pluginsdir)\special + +libspecial_OBJS = special.obj + +all-local: libspecial.dll + +install-local: all-local + if not exist $(plugindir) mkdir $(plugindir) + for %f in (plugin.xml libspecial.dll) do copy /y %f $(plugindir) + +clean-local: + for %f in ($(libspecial_OBJS) libspecial.*) do if exist %f del %f + +libspecial.dll: $(libspecial_OBJS) + cl /nologo /LD /MD /Fe$@ $(libspecial_OBJS) $(cplibdir)\libcpluff.lib diff --git a/lib/cpluff/examples/nmakedir.bat b/lib/cpluff/examples/nmakedir.bat index 34567c226c..5814c012ad 100755 --- a/lib/cpluff/examples/nmakedir.bat +++ b/lib/cpluff/examples/nmakedir.bat @@ -1,11 +1,11 @@ -@REM C-Pluff examples build system for MSVC
-@REM Copyright 2007 Johannes Lehtinen
-@REM This file is free software; Johannes Lehtinen gives unlimited permission
-@REM to copy, distribute and modify it.
-
-@echo Making %2 in %1
-@cd %1
-@for /f "" %%d in ('cd') do @echo Entering directory %%d
-@nmake /nologo /f Makefile.nmake %2
-@for /f "" %%d in ('cd') do @echo Leaving directory %%d
-@cd ..
+@REM C-Pluff examples build system for MSVC +@REM Copyright 2007 Johannes Lehtinen +@REM This file is free software; Johannes Lehtinen gives unlimited permission +@REM to copy, distribute and modify it. + +@echo Making %2 in %1 +@cd %1 +@for /f "" %%d in ('cd') do @echo Entering directory %%d +@nmake /nologo /f Makefile.nmake %2 +@for /f "" %%d in ('cd') do @echo Leaving directory %%d +@cd .. diff --git a/lib/cpluff/libcpluff/pcontrol.c b/lib/cpluff/libcpluff/pcontrol.c index 38d0de4134..d3cfb32be9 100644 --- a/lib/cpluff/libcpluff/pcontrol.c +++ b/lib/cpluff/libcpluff/pcontrol.c @@ -40,8 +40,8 @@ #include "defines.h" #include "util.h" #include "internal.h" -#ifdef _WIN32
-#include <windows.h>
+#ifdef _WIN32 +#include <windows.h> #endif diff --git a/lib/cpluff/libcpluff/win32/cpluff.vcproj b/lib/cpluff/libcpluff/win32/cpluff.vcproj index cd8947f29f..a21395f4fe 100644 --- a/lib/cpluff/libcpluff/win32/cpluff.vcproj +++ b/lib/cpluff/libcpluff/win32/cpluff.vcproj @@ -1,286 +1,286 @@ -<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="9,00"
- Name="cpluff"
- ProjectGUID="{88968763-3D6B-48A8-B495-CC8C187FAC02}"
- RootNamespace="cpluff"
- Keyword="Win32Proj"
- TargetFrameworkVersion="196613"
- >
- <Platforms>
- <Platform
- Name="Win32"
- />
- </Platforms>
- <ToolFiles>
- </ToolFiles>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- OutputDirectory="$(SolutionDir)libs\cpluff\$(ConfigurationName)\"
- IntermediateDirectory="$(SolutionDir)objs\cpluff\$(ConfigurationName)\"
- ConfigurationType="2"
- CharacterSet="1"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- />
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- AdditionalIncludeDirectories="."
- PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;CP_C_API=CP_EXPORT;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE"
- MinimalRebuild="true"
- BasicRuntimeChecks="3"
- RuntimeLibrary="3"
- UsePrecompiledHeader="0"
- WarningLevel="3"
- DebugInformationFormat="4"
- CompileAs="1"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalDependencies="libexpat.lib"
- OutputFile="..\..\..\..\system\cpluff.dll"
- LinkIncremental="2"
- GenerateDebugInformation="true"
- ProgramDatabaseFile="$(OutDir)$(TargetName).pdb"
- SubSystem="2"
- ImportLibrary="$(OutDir)$(TargetName).lib"
- TargetMachine="1"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- <Configuration
- Name="Release|Win32"
- OutputDirectory="$(SolutionDir)libs\cpluff\$(ConfigurationName)\"
- IntermediateDirectory="$(SolutionDir)objs\cpluff\$(ConfigurationName)\"
- ConfigurationType="2"
- CharacterSet="1"
- WholeProgramOptimization="1"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- />
- <Tool
- Name="VCCLCompilerTool"
- Optimization="2"
- EnableIntrinsicFunctions="true"
- AdditionalIncludeDirectories="."
- PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;CP_C_API=CP_EXPORT;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE"
- RuntimeLibrary="2"
- EnableFunctionLevelLinking="true"
- UsePrecompiledHeader="0"
- WarningLevel="3"
- DebugInformationFormat="3"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalDependencies="libexpat.lib"
- OutputFile="..\..\..\..\system\cpluff.dll"
- LinkIncremental="1"
- GenerateDebugInformation="true"
- ProgramDatabaseFile="$(OutDir)$(TargetName).pdb"
- SubSystem="2"
- OptimizeReferences="2"
- EnableCOMDATFolding="2"
- ImportLibrary="$(OutDir)$(TargetName).lib"
- TargetMachine="1"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- </Configurations>
- <References>
- </References>
- <Files>
- <Filter
- Name="Source Files"
- Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
- UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
- >
- <File
- RelativePath="..\context.c"
- >
- </File>
- <File
- RelativePath="..\cpluff.c"
- >
- </File>
- <File
- RelativePath=".\dirent.c"
- >
- </File>
- <File
- RelativePath="..\..\kazlib\hash.c"
- >
- </File>
- <File
- RelativePath="..\..\kazlib\list.c"
- >
- </File>
- <File
- RelativePath="..\logging.c"
- >
- </File>
- <File
- RelativePath="..\pcontrol.c"
- >
- </File>
- <File
- RelativePath="..\pinfo.c"
- >
- </File>
- <File
- RelativePath="..\ploader.c"
- >
- </File>
- <File
- RelativePath="..\pscan.c"
- >
- </File>
- <File
- RelativePath="..\psymbol.c"
- >
- </File>
- <File
- RelativePath="..\serial.c"
- >
- </File>
- <File
- RelativePath="..\thread_windows.c"
- >
- </File>
- <File
- RelativePath="..\util.c"
- >
- </File>
- </Filter>
- <Filter
- Name="Header Files"
- Filter="h;hpp;hxx;hm;inl;inc;xsd"
- UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
- >
- <File
- RelativePath="..\cpluff.h"
- >
- </File>
- <File
- RelativePath=".\cpluffdef.h"
- >
- </File>
- <File
- RelativePath="..\defines.h"
- >
- </File>
- <File
- RelativePath=".\dirent.h"
- >
- </File>
- <File
- RelativePath="..\..\kazlib\hash.h"
- >
- </File>
- <File
- RelativePath="..\internal.h"
- >
- </File>
- <File
- RelativePath="..\..\kazlib\list.h"
- >
- </File>
- <File
- RelativePath="..\thread.h"
- >
- </File>
- <File
- RelativePath="..\util.h"
- >
- </File>
- </Filter>
- </Files>
- <Globals>
- </Globals>
-</VisualStudioProject>
+<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="9,00" + Name="cpluff" + ProjectGUID="{88968763-3D6B-48A8-B495-CC8C187FAC02}" + RootNamespace="cpluff" + Keyword="Win32Proj" + TargetFrameworkVersion="196613" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + OutputDirectory="$(SolutionDir)libs\cpluff\$(ConfigurationName)\" + IntermediateDirectory="$(SolutionDir)objs\cpluff\$(ConfigurationName)\" + ConfigurationType="2" + CharacterSet="1" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="0" + AdditionalIncludeDirectories="." + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;CP_C_API=CP_EXPORT;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE" + MinimalRebuild="true" + BasicRuntimeChecks="3" + RuntimeLibrary="3" + UsePrecompiledHeader="0" + WarningLevel="3" + DebugInformationFormat="4" + CompileAs="1" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + AdditionalDependencies="libexpat.lib" + OutputFile="..\..\..\..\system\cpluff.dll" + LinkIncremental="2" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" + SubSystem="2" + ImportLibrary="$(OutDir)$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Release|Win32" + OutputDirectory="$(SolutionDir)libs\cpluff\$(ConfigurationName)\" + IntermediateDirectory="$(SolutionDir)objs\cpluff\$(ConfigurationName)\" + ConfigurationType="2" + CharacterSet="1" + WholeProgramOptimization="1" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="2" + EnableIntrinsicFunctions="true" + AdditionalIncludeDirectories="." + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;CP_C_API=CP_EXPORT;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE" + RuntimeLibrary="2" + EnableFunctionLevelLinking="true" + UsePrecompiledHeader="0" + WarningLevel="3" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + AdditionalDependencies="libexpat.lib" + OutputFile="..\..\..\..\system\cpluff.dll" + LinkIncremental="1" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" + SubSystem="2" + OptimizeReferences="2" + EnableCOMDATFolding="2" + ImportLibrary="$(OutDir)$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="Source Files" + Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx" + UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}" + > + <File + RelativePath="..\context.c" + > + </File> + <File + RelativePath="..\cpluff.c" + > + </File> + <File + RelativePath=".\dirent.c" + > + </File> + <File + RelativePath="..\..\kazlib\hash.c" + > + </File> + <File + RelativePath="..\..\kazlib\list.c" + > + </File> + <File + RelativePath="..\logging.c" + > + </File> + <File + RelativePath="..\pcontrol.c" + > + </File> + <File + RelativePath="..\pinfo.c" + > + </File> + <File + RelativePath="..\ploader.c" + > + </File> + <File + RelativePath="..\pscan.c" + > + </File> + <File + RelativePath="..\psymbol.c" + > + </File> + <File + RelativePath="..\serial.c" + > + </File> + <File + RelativePath="..\thread_windows.c" + > + </File> + <File + RelativePath="..\util.c" + > + </File> + </Filter> + <Filter + Name="Header Files" + Filter="h;hpp;hxx;hm;inl;inc;xsd" + UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}" + > + <File + RelativePath="..\cpluff.h" + > + </File> + <File + RelativePath=".\cpluffdef.h" + > + </File> + <File + RelativePath="..\defines.h" + > + </File> + <File + RelativePath=".\dirent.h" + > + </File> + <File + RelativePath="..\..\kazlib\hash.h" + > + </File> + <File + RelativePath="..\internal.h" + > + </File> + <File + RelativePath="..\..\kazlib\list.h" + > + </File> + <File + RelativePath="..\thread.h" + > + </File> + <File + RelativePath="..\util.h" + > + </File> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> diff --git a/lib/cpluff/libcpluff/win32/cpluff.vcxproj b/lib/cpluff/libcpluff/win32/cpluff.vcxproj index ec7cfa4ca5..07001a4e84 100644 --- a/lib/cpluff/libcpluff/win32/cpluff.vcxproj +++ b/lib/cpluff/libcpluff/win32/cpluff.vcxproj @@ -1,142 +1,142 @@ -<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <ItemGroup Label="ProjectConfigurations">
- <ProjectConfiguration Include="Debug|Win32">
- <Configuration>Debug</Configuration>
- <Platform>Win32</Platform>
- </ProjectConfiguration>
- <ProjectConfiguration Include="Release|Win32">
- <Configuration>Release</Configuration>
- <Platform>Win32</Platform>
- </ProjectConfiguration>
- </ItemGroup>
- <PropertyGroup Label="Globals">
- <ProjectGuid>{88968763-3D6B-48A8-B495-CC8C187FAC02}</ProjectGuid>
- <RootNamespace>cpluff</RootNamespace>
- <Keyword>Win32Proj</Keyword>
- </PropertyGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
- <ConfigurationType>DynamicLibrary</ConfigurationType>
- <CharacterSet>Unicode</CharacterSet>
- <WholeProgramOptimization>true</WholeProgramOptimization>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
- <ConfigurationType>DynamicLibrary</ConfigurationType>
- <CharacterSet>Unicode</CharacterSet>
- </PropertyGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
- <ImportGroup Label="ExtensionSettings">
- </ImportGroup>
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
- <Import Project="..\..\..\..\project\VS2010Express\XBMC for Windows.props" />
- </ImportGroup>
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
- <Import Project="..\..\..\..\project\VS2010Express\XBMC for Windows.props" />
- </ImportGroup>
- <PropertyGroup Label="UserMacros" />
- <PropertyGroup>
- <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
- <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)libs\$(TargetName)\$(Configuration)\</OutDir>
- <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)objs\$(TargetName)\$(Configuration)\</IntDir>
- <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
- <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)libs\$(TargetName)\$(Configuration)\</OutDir>
- <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)objs\$(TargetName)\$(Configuration)\</IntDir>
- <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
- <CustomBuildAfterTargets Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Build</CustomBuildAfterTargets>
- <CustomBuildAfterTargets Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Build</CustomBuildAfterTargets>
- </PropertyGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
- <ClCompile>
- <Optimization>Disabled</Optimization>
- <AdditionalIncludeDirectories>.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
- <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;CP_C_API=CP_EXPORT;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <MinimalRebuild>true</MinimalRebuild>
- <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
- <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
- <PrecompiledHeader>
- </PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
- <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
- <CompileAs>CompileAsC</CompileAs>
- </ClCompile>
- <Link>
- <AdditionalDependencies>libexpat.lib;%(AdditionalDependencies)</AdditionalDependencies>
- <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- <ProgramDatabaseFile>$(OutDir)$(TargetName).pdb</ProgramDatabaseFile>
- <SubSystem>Windows</SubSystem>
- <ImportLibrary>$(OutDir)$(TargetName).lib</ImportLibrary>
- <TargetMachine>MachineX86</TargetMachine>
- </Link>
- <CustomBuildStep>
- <Command>copy /B /Y "$(TargetPath)" "$(SolutionDir)..\..\system\$(TargetFileName)"</Command>
- <Message>Copy Output</Message>
- <Outputs>$(SolutionDir)..\..\system\$(TargetFileName)</Outputs>
- <Inputs>$(TargetPath)</Inputs>
- </CustomBuildStep>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
- <ClCompile>
- <Optimization>MaxSpeed</Optimization>
- <IntrinsicFunctions>true</IntrinsicFunctions>
- <AdditionalIncludeDirectories>.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
- <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;CP_C_API=CP_EXPORT;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <PrecompiledHeader>
- </PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
- <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
- </ClCompile>
- <Link>
- <AdditionalDependencies>libexpat.lib;%(AdditionalDependencies)</AdditionalDependencies>
- <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- <ProgramDatabaseFile>$(OutDir)$(TargetName).pdb</ProgramDatabaseFile>
- <SubSystem>Windows</SubSystem>
- <OptimizeReferences>true</OptimizeReferences>
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
- <ImportLibrary>$(OutDir)$(TargetName).lib</ImportLibrary>
- <TargetMachine>MachineX86</TargetMachine>
- </Link>
- <CustomBuildStep>
- <Command>copy /B /Y "$(TargetPath)" "$(SolutionDir)..\..\system\$(TargetFileName)"</Command>
- <Message>Copy Output</Message>
- <Outputs>$(SolutionDir)..\..\system\$(TargetFileName)</Outputs>
- <Inputs>$(TargetPath)</Inputs>
- </CustomBuildStep>
- </ItemDefinitionGroup>
- <ItemGroup>
- <ClCompile Include="..\context.c" />
- <ClCompile Include="..\cpluff.c" />
- <ClCompile Include="dirent.c" />
- <ClCompile Include="..\..\kazlib\hash.c" />
- <ClCompile Include="..\..\kazlib\list.c" />
- <ClCompile Include="..\logging.c" />
- <ClCompile Include="..\pcontrol.c" />
- <ClCompile Include="..\pinfo.c" />
- <ClCompile Include="..\ploader.c" />
- <ClCompile Include="..\pscan.c" />
- <ClCompile Include="..\psymbol.c" />
- <ClCompile Include="..\serial.c" />
- <ClCompile Include="..\thread_windows.c" />
- <ClCompile Include="..\util.c" />
- </ItemGroup>
- <ItemGroup>
- <ClInclude Include="..\cpluff.h" />
- <ClInclude Include="cpluffdef.h" />
- <ClInclude Include="..\defines.h" />
- <ClInclude Include="dirent.h" />
- <ClInclude Include="..\..\kazlib\hash.h" />
- <ClInclude Include="..\internal.h" />
- <ClInclude Include="..\..\kazlib\list.h" />
- <ClInclude Include="..\thread.h" />
- <ClInclude Include="..\util.h" />
- </ItemGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
- <ImportGroup Label="ExtensionTargets">
- </ImportGroup>
+<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup Label="ProjectConfigurations"> + <ProjectConfiguration Include="Debug|Win32"> + <Configuration>Debug</Configuration> + <Platform>Win32</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|Win32"> + <Configuration>Release</Configuration> + <Platform>Win32</Platform> + </ProjectConfiguration> + </ItemGroup> + <PropertyGroup Label="Globals"> + <ProjectGuid>{88968763-3D6B-48A8-B495-CC8C187FAC02}</ProjectGuid> + <RootNamespace>cpluff</RootNamespace> + <Keyword>Win32Proj</Keyword> + </PropertyGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> + <ConfigurationType>DynamicLibrary</ConfigurationType> + <CharacterSet>Unicode</CharacterSet> + <WholeProgramOptimization>true</WholeProgramOptimization> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> + <ConfigurationType>DynamicLibrary</ConfigurationType> + <CharacterSet>Unicode</CharacterSet> + </PropertyGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> + <ImportGroup Label="ExtensionSettings"> + </ImportGroup> + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> + <Import Project="..\..\..\..\project\VS2010Express\XBMC for Windows.props" /> + </ImportGroup> + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> + <Import Project="..\..\..\..\project\VS2010Express\XBMC for Windows.props" /> + </ImportGroup> + <PropertyGroup Label="UserMacros" /> + <PropertyGroup> + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> + <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)libs\$(TargetName)\$(Configuration)\</OutDir> + <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)objs\$(TargetName)\$(Configuration)\</IntDir> + <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> + <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)libs\$(TargetName)\$(Configuration)\</OutDir> + <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)objs\$(TargetName)\$(Configuration)\</IntDir> + <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental> + <CustomBuildAfterTargets Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Build</CustomBuildAfterTargets> + <CustomBuildAfterTargets Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Build</CustomBuildAfterTargets> + </PropertyGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> + <ClCompile> + <Optimization>Disabled</Optimization> + <AdditionalIncludeDirectories>.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> + <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;CP_C_API=CP_EXPORT;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <MinimalRebuild>true</MinimalRebuild> + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> + <PrecompiledHeader> + </PrecompiledHeader> + <WarningLevel>Level3</WarningLevel> + <DebugInformationFormat>EditAndContinue</DebugInformationFormat> + <CompileAs>CompileAsC</CompileAs> + </ClCompile> + <Link> + <AdditionalDependencies>libexpat.lib;%(AdditionalDependencies)</AdditionalDependencies> + <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile> + <GenerateDebugInformation>true</GenerateDebugInformation> + <ProgramDatabaseFile>$(OutDir)$(TargetName).pdb</ProgramDatabaseFile> + <SubSystem>Windows</SubSystem> + <ImportLibrary>$(OutDir)$(TargetName).lib</ImportLibrary> + <TargetMachine>MachineX86</TargetMachine> + </Link> + <CustomBuildStep> + <Command>copy /B /Y "$(TargetPath)" "$(SolutionDir)..\..\system\$(TargetFileName)"</Command> + <Message>Copy Output</Message> + <Outputs>$(SolutionDir)..\..\system\$(TargetFileName)</Outputs> + <Inputs>$(TargetPath)</Inputs> + </CustomBuildStep> + </ItemDefinitionGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> + <ClCompile> + <Optimization>MaxSpeed</Optimization> + <IntrinsicFunctions>true</IntrinsicFunctions> + <AdditionalIncludeDirectories>.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> + <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;CP_C_API=CP_EXPORT;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> + <FunctionLevelLinking>true</FunctionLevelLinking> + <PrecompiledHeader> + </PrecompiledHeader> + <WarningLevel>Level3</WarningLevel> + <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> + </ClCompile> + <Link> + <AdditionalDependencies>libexpat.lib;%(AdditionalDependencies)</AdditionalDependencies> + <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile> + <GenerateDebugInformation>true</GenerateDebugInformation> + <ProgramDatabaseFile>$(OutDir)$(TargetName).pdb</ProgramDatabaseFile> + <SubSystem>Windows</SubSystem> + <OptimizeReferences>true</OptimizeReferences> + <EnableCOMDATFolding>true</EnableCOMDATFolding> + <ImportLibrary>$(OutDir)$(TargetName).lib</ImportLibrary> + <TargetMachine>MachineX86</TargetMachine> + </Link> + <CustomBuildStep> + <Command>copy /B /Y "$(TargetPath)" "$(SolutionDir)..\..\system\$(TargetFileName)"</Command> + <Message>Copy Output</Message> + <Outputs>$(SolutionDir)..\..\system\$(TargetFileName)</Outputs> + <Inputs>$(TargetPath)</Inputs> + </CustomBuildStep> + </ItemDefinitionGroup> + <ItemGroup> + <ClCompile Include="..\context.c" /> + <ClCompile Include="..\cpluff.c" /> + <ClCompile Include="dirent.c" /> + <ClCompile Include="..\..\kazlib\hash.c" /> + <ClCompile Include="..\..\kazlib\list.c" /> + <ClCompile Include="..\logging.c" /> + <ClCompile Include="..\pcontrol.c" /> + <ClCompile Include="..\pinfo.c" /> + <ClCompile Include="..\ploader.c" /> + <ClCompile Include="..\pscan.c" /> + <ClCompile Include="..\psymbol.c" /> + <ClCompile Include="..\serial.c" /> + <ClCompile Include="..\thread_windows.c" /> + <ClCompile Include="..\util.c" /> + </ItemGroup> + <ItemGroup> + <ClInclude Include="..\cpluff.h" /> + <ClInclude Include="cpluffdef.h" /> + <ClInclude Include="..\defines.h" /> + <ClInclude Include="dirent.h" /> + <ClInclude Include="..\..\kazlib\hash.h" /> + <ClInclude Include="..\internal.h" /> + <ClInclude Include="..\..\kazlib\list.h" /> + <ClInclude Include="..\thread.h" /> + <ClInclude Include="..\util.h" /> + </ItemGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> + <ImportGroup Label="ExtensionTargets"> + </ImportGroup> </Project>
\ No newline at end of file |