scripts: Ported premake script to premake4.3, regenerated all projects
git-svn-id: http://pugixml.googlecode.com/svn/trunk@799 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
parent
8f1a304dbf
commit
5720761685
@ -5,11 +5,6 @@ local static = _ARGS[1] == 'static'
|
|||||||
local action = premake.action.current()
|
local action = premake.action.current()
|
||||||
|
|
||||||
if string.startswith(_ACTION, "vs") then
|
if string.startswith(_ACTION, "vs") then
|
||||||
-- We need debugging symbols for all configurations, but runtime library depends on official Symbols flag, so hack it
|
|
||||||
function premake.vs200x_vcproj_symbols(cfg)
|
|
||||||
return 3
|
|
||||||
end
|
|
||||||
|
|
||||||
if action then
|
if action then
|
||||||
-- Disable solution generation
|
-- Disable solution generation
|
||||||
function action.onsolution(sln)
|
function action.onsolution(sln)
|
||||||
@ -18,7 +13,19 @@ if string.startswith(_ACTION, "vs") then
|
|||||||
|
|
||||||
-- Rename output file
|
-- Rename output file
|
||||||
function action.onproject(prj)
|
function action.onproject(prj)
|
||||||
premake.generate(prj, "%%_" .. _ACTION .. (static and "_static" or "") .. ".vcproj", premake.vs200x_vcproj)
|
local name = "%%_" .. _ACTION .. (static and "_static" or "")
|
||||||
|
|
||||||
|
if static then
|
||||||
|
for k, v in pairs(prj.project.__configs) do
|
||||||
|
v.objectsdir = v.objectsdir .. "Static"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if _ACTION == "vs2010" then
|
||||||
|
premake.generate(prj, name .. ".vcxproj", premake.vs2010_vcxproj)
|
||||||
|
else
|
||||||
|
premake.generate(prj, name .. ".vcproj", premake.vs200x_vcproj)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
elseif _ACTION == "codeblocks" then
|
elseif _ACTION == "codeblocks" then
|
||||||
@ -50,10 +57,10 @@ if string.startswith(_ACTION, "vs") then
|
|||||||
configurations { "Debug", "Release" }
|
configurations { "Debug", "Release" }
|
||||||
|
|
||||||
if static then
|
if static then
|
||||||
configuration "Debug" targetsuffix "_sd"
|
configuration "Debug" targetsuffix "sd"
|
||||||
configuration "Release" targetsuffix "_s"
|
configuration "Release" targetsuffix "s"
|
||||||
else
|
else
|
||||||
configuration "Debug" targetsuffix "_d"
|
configuration "Debug" targetsuffix "d"
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
if _ACTION == "xcode3" then
|
if _ACTION == "xcode3" then
|
||||||
@ -62,19 +69,18 @@ else
|
|||||||
|
|
||||||
configurations { "Debug", "Release" }
|
configurations { "Debug", "Release" }
|
||||||
|
|
||||||
configuration "Debug" targetsuffix "_d"
|
configuration "Debug" targetsuffix "d"
|
||||||
end
|
end
|
||||||
|
|
||||||
project "pugixml"
|
project "pugixml"
|
||||||
kind "StaticLib"
|
kind "StaticLib"
|
||||||
language "C++"
|
language "C++"
|
||||||
files { "../src/pugixml.hpp", "../src/pugiconfig.hpp", "../src/pugixml.cpp" }
|
files { "../src/pugixml.hpp", "../src/pugiconfig.hpp", "../src/pugixml.cpp" }
|
||||||
flags { "NoPCH", "NoMinimalRebuild" }
|
flags { "NoPCH", "NoMinimalRebuild", "NoEditAndContinue", "Symbols" }
|
||||||
uuid "89A1E353-E2DC-495C-B403-742BE206ACED"
|
uuid "89A1E353-E2DC-495C-B403-742BE206ACED"
|
||||||
|
|
||||||
configuration "Debug"
|
configuration "Debug"
|
||||||
defines { "_DEBUG" }
|
defines { "_DEBUG" }
|
||||||
flags { "Symbols" }
|
|
||||||
|
|
||||||
configuration "Release"
|
configuration "Release"
|
||||||
defines { "NDEBUG" }
|
defines { "NDEBUG" }
|
||||||
|
|||||||
@ -7,18 +7,18 @@
|
|||||||
objects = {
|
objects = {
|
||||||
|
|
||||||
/* Begin PBXBuildFile section */
|
/* Begin PBXBuildFile section */
|
||||||
5314084032B5001276189718 /* pugixml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E0405306C15001276189718 /* pugixml.cpp */; };
|
0424128F67AB5C730232235E /* pugixml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47481C4F0E03673E0E780637 /* pugixml.cpp */; };
|
||||||
/* End PBXBuildFile section */
|
/* End PBXBuildFile section */
|
||||||
|
|
||||||
/* Begin PBXFileReference section */
|
/* Begin PBXFileReference section */
|
||||||
0A4C28F55399001276189718 /* pugiconfig.hpp */ = {isa = PBXFileReference; lastKnownFileType = text; name = "pugiconfig.hpp"; path = "pugiconfig.hpp"; sourceTree = "<group>"; };
|
0B66463C5F896E6449051D38 /* pugiconfig.hpp */ = {isa = PBXFileReference; lastKnownFileType = text; name = "pugiconfig.hpp"; path = "pugiconfig.hpp"; sourceTree = "<group>"; };
|
||||||
0E0405306C15001276189718 /* pugixml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "pugixml.cpp"; path = "pugixml.cpp"; sourceTree = "<group>"; };
|
47481C4F0E03673E0E780637 /* pugixml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "pugixml.cpp"; path = "pugixml.cpp"; sourceTree = "<group>"; };
|
||||||
7C1A11945858001276189718 /* pugixml.hpp */ = {isa = PBXFileReference; lastKnownFileType = text; name = "pugixml.hpp"; path = "pugixml.hpp"; sourceTree = "<group>"; };
|
6C911F0460FC44CD3B1B5624 /* pugixml.hpp */ = {isa = PBXFileReference; lastKnownFileType = text; name = "pugixml.hpp"; path = "pugixml.hpp"; sourceTree = "<group>"; };
|
||||||
1DA04ADC64C3001276189718 /* libpugixml_d.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libpugixml_d.a"; path = "libpugixml_d.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
1DA04ADC64C3566D16C45B6D /* libpugixmld.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libpugixmld.a"; path = "libpugixmld.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
/* End PBXFileReference section */
|
/* End PBXFileReference section */
|
||||||
|
|
||||||
/* Begin PBXFrameworksBuildPhase section */
|
/* Begin PBXFrameworksBuildPhase section */
|
||||||
47481C4F0E03001276189718 /* Frameworks */ = {
|
2BA00212518037166623673F /* Frameworks */ = {
|
||||||
isa = PBXFrameworksBuildPhase;
|
isa = PBXFrameworksBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
@ -28,52 +28,52 @@
|
|||||||
/* End PBXFrameworksBuildPhase section */
|
/* End PBXFrameworksBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXGroup section */
|
/* Begin PBXGroup section */
|
||||||
65DB0F6D27EA001276189718 /* pugixml */ = {
|
19E0517F3CF26ED63AE23641 /* pugixml */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
20852B6E3BB4001276189718 /* src */,
|
578963B4309E714F05E01D71 /* src */,
|
||||||
578963B4309E001276189718 /* Products */,
|
219F66186DDF392149043810 /* Products */,
|
||||||
);
|
);
|
||||||
name = pugixml;
|
name = "pugixml";
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
20852B6E3BB4001276189718 /* src */ = {
|
578963B4309E714F05E01D71 /* src */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
0A4C28F55399001276189718 /* pugiconfig.hpp */,
|
0B66463C5F896E6449051D38 /* pugiconfig.hpp */,
|
||||||
0E0405306C15001276189718 /* pugixml.cpp */,
|
47481C4F0E03673E0E780637 /* pugixml.cpp */,
|
||||||
7C1A11945858001276189718 /* pugixml.hpp */,
|
6C911F0460FC44CD3B1B5624 /* pugixml.hpp */,
|
||||||
);
|
);
|
||||||
name = src;
|
name = "src";
|
||||||
path = ../src;
|
path = ../src;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
578963B4309E001276189718 /* Products */ = {
|
219F66186DDF392149043810 /* Products */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
1DA04ADC64C3001276189718 /* libpugixml_d.a */,
|
1DA04ADC64C3566D16C45B6D /* libpugixmld.a */,
|
||||||
);
|
);
|
||||||
name = Products;
|
name = "Products";
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
/* End PBXGroup section */
|
/* End PBXGroup section */
|
||||||
|
|
||||||
/* Begin PBXNativeTarget section */
|
/* Begin PBXNativeTarget section */
|
||||||
566D16C45B6D001276189718 /* pugixml */ = {
|
6B55152571905B6C3A6F39D0 /* pugixml */ = {
|
||||||
isa = PBXNativeTarget;
|
isa = PBXNativeTarget;
|
||||||
buildConfigurationList = 714F05E01D71001276189718 /* Build configuration list for PBXNativeTarget "pugixml" */;
|
buildConfigurationList = 73BF376C14AA1ECC0AC517ED /* Build configuration list for PBXNativeTarget "pugixml" */;
|
||||||
buildPhases = (
|
buildPhases = (
|
||||||
0B66463C5F89001276189718 /* Resources */,
|
6CA66B9B6252229A36E8733C /* Resources */,
|
||||||
6E6449051D38001276189718 /* Sources */,
|
287808486FBF545206A47CC1 /* Sources */,
|
||||||
47481C4F0E03001276189718 /* Frameworks */,
|
2BA00212518037166623673F /* Frameworks */,
|
||||||
);
|
);
|
||||||
buildRules = (
|
buildRules = (
|
||||||
);
|
);
|
||||||
dependencies = (
|
dependencies = (
|
||||||
);
|
);
|
||||||
name = pugixml;
|
name = "pugixml";
|
||||||
productName = pugixml;
|
productName = "pugixml";
|
||||||
productReference = 1DA04ADC64C3001276189718 /* libpugixml_d.a */;
|
productReference = 1DA04ADC64C3566D16C45B6D /* libpugixmld.a */;
|
||||||
productType = "com.apple.product-type.library.static";
|
productType = "com.apple.product-type.library.static";
|
||||||
};
|
};
|
||||||
/* End PBXNativeTarget section */
|
/* End PBXNativeTarget section */
|
||||||
@ -84,17 +84,17 @@
|
|||||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "pugixml" */;
|
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "pugixml" */;
|
||||||
compatibilityVersion = "Xcode 3.1";
|
compatibilityVersion = "Xcode 3.1";
|
||||||
hasScannedForEncodings = 1;
|
hasScannedForEncodings = 1;
|
||||||
mainGroup = 65DB0F6D27EA001276189718 /* pugixml */;
|
mainGroup = 19E0517F3CF26ED63AE23641 /* pugixml */;
|
||||||
projectDirPath = "";
|
projectDirPath = "";
|
||||||
projectRoot = "";
|
projectRoot = "";
|
||||||
targets = (
|
targets = (
|
||||||
566D16C45B6D001276189718 /* libpugixml_d.a */,
|
6B55152571905B6C3A6F39D0 /* libpugixmld.a */,
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
/* End PBXProject section */
|
/* End PBXProject section */
|
||||||
|
|
||||||
/* Begin PBXResourcesBuildPhase section */
|
/* Begin PBXResourcesBuildPhase section */
|
||||||
0B66463C5F89001276189718 /* Resources */ = {
|
6CA66B9B6252229A36E8733C /* Resources */ = {
|
||||||
isa = PBXResourcesBuildPhase;
|
isa = PBXResourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
@ -104,11 +104,11 @@
|
|||||||
/* End PBXResourcesBuildPhase section */
|
/* End PBXResourcesBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXSourcesBuildPhase section */
|
/* Begin PBXSourcesBuildPhase section */
|
||||||
6E6449051D38001276189718 /* Sources */ = {
|
287808486FBF545206A47CC1 /* Sources */ = {
|
||||||
isa = PBXSourcesBuildPhase;
|
isa = PBXSourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
5314084032B5001276189718 /* pugixml.cpp in Sources */,
|
0424128F67AB5C730232235E /* pugixml.cpp in Sources */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
@ -118,7 +118,7 @@
|
|||||||
/* End PBXVariantGroup section */
|
/* End PBXVariantGroup section */
|
||||||
|
|
||||||
/* Begin XCBuildConfiguration section */
|
/* Begin XCBuildConfiguration section */
|
||||||
6B5515257190001276189718 /* Debug */ = {
|
4FDB54E4253E36FC55CE27E8 /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
@ -126,15 +126,14 @@
|
|||||||
GCC_DYNAMIC_NO_PIC = NO;
|
GCC_DYNAMIC_NO_PIC = NO;
|
||||||
GCC_MODEL_TUNING = G5;
|
GCC_MODEL_TUNING = G5;
|
||||||
INSTALL_PATH = /usr/local/lib;
|
INSTALL_PATH = /usr/local/lib;
|
||||||
PRODUCT_NAME = "pugixml_d";
|
PRODUCT_NAME = "pugixmld";
|
||||||
};
|
};
|
||||||
name = "Debug";
|
name = "Debug";
|
||||||
};
|
};
|
||||||
4FDB54E4253E001276189718 /* Release */ = {
|
0A4C28F553990E0405306C15 /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
||||||
CONFIGURATION_BUILD_DIR = xcode3;
|
CONFIGURATION_BUILD_DIR = xcode3;
|
||||||
GCC_DYNAMIC_NO_PIC = NO;
|
GCC_DYNAMIC_NO_PIC = NO;
|
||||||
GCC_MODEL_TUNING = G5;
|
GCC_MODEL_TUNING = G5;
|
||||||
@ -143,7 +142,7 @@
|
|||||||
};
|
};
|
||||||
name = "Release";
|
name = "Release";
|
||||||
};
|
};
|
||||||
5B6C3A6F39D0001276189718 /* Debug */ = {
|
65DB0F6D27EA20852B6E3BB4 /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||||
@ -151,7 +150,6 @@
|
|||||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
|
||||||
GCC_OPTIMIZATION_LEVEL = 0;
|
GCC_OPTIMIZATION_LEVEL = 0;
|
||||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||||
"_DEBUG",
|
"_DEBUG",
|
||||||
@ -165,12 +163,13 @@
|
|||||||
};
|
};
|
||||||
name = "Debug";
|
name = "Debug";
|
||||||
};
|
};
|
||||||
36FC55CE27E8001276189718 /* Release */ = {
|
5314084032B57C1A11945858 /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||||
|
COPY_PHASE_STRIP = NO;
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||||
GCC_OPTIMIZATION_LEVEL = s;
|
GCC_OPTIMIZATION_LEVEL = s;
|
||||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||||
@ -188,11 +187,11 @@
|
|||||||
/* End XCBuildConfiguration section */
|
/* End XCBuildConfiguration section */
|
||||||
|
|
||||||
/* Begin XCConfigurationList section */
|
/* Begin XCConfigurationList section */
|
||||||
714F05E01D71001276189718 /* Build configuration list for PBXNativeTarget "libpugixml_d.a" */ = {
|
73BF376C14AA1ECC0AC517ED /* Build configuration list for PBXNativeTarget "libpugixmld.a" */ = {
|
||||||
isa = XCConfigurationList;
|
isa = XCConfigurationList;
|
||||||
buildConfigurations = (
|
buildConfigurations = (
|
||||||
6B5515257190001276189718 /* Debug */,
|
4FDB54E4253E36FC55CE27E8 /* Debug */,
|
||||||
4FDB54E4253E001276189718 /* Release */,
|
0A4C28F553990E0405306C15 /* Release */,
|
||||||
);
|
);
|
||||||
defaultConfigurationIsVisible = 0;
|
defaultConfigurationIsVisible = 0;
|
||||||
defaultConfigurationName = "Debug";
|
defaultConfigurationName = "Debug";
|
||||||
@ -200,8 +199,8 @@
|
|||||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "pugixml" */ = {
|
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "pugixml" */ = {
|
||||||
isa = XCConfigurationList;
|
isa = XCConfigurationList;
|
||||||
buildConfigurations = (
|
buildConfigurations = (
|
||||||
5B6C3A6F39D0001276189718 /* Debug */,
|
65DB0F6D27EA20852B6E3BB4 /* Debug */,
|
||||||
36FC55CE27E8001276189718 /* Release */,
|
5314084032B57C1A11945858 /* Release */,
|
||||||
);
|
);
|
||||||
defaultConfigurationIsVisible = 0;
|
defaultConfigurationIsVisible = 0;
|
||||||
defaultConfigurationName = "Debug";
|
defaultConfigurationName = "Debug";
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
<Option compiler="gcc" />
|
<Option compiler="gcc" />
|
||||||
<Build>
|
<Build>
|
||||||
<Target title="Debug">
|
<Target title="Debug">
|
||||||
<Option output="codeblocks/libpugixml_d.a" prefix_auto="0" extension_auto="0" />
|
<Option output="codeblocks/libpugixmld.a" prefix_auto="0" extension_auto="0" />
|
||||||
<Option object_output="codeblocks/Debug" />
|
<Option object_output="codeblocks/Debug" />
|
||||||
<Option type="2" />
|
<Option type="2" />
|
||||||
<Option compiler="gcc" />
|
<Option compiler="gcc" />
|
||||||
@ -24,11 +24,11 @@
|
|||||||
<Option type="2" />
|
<Option type="2" />
|
||||||
<Option compiler="gcc" />
|
<Option compiler="gcc" />
|
||||||
<Compiler>
|
<Compiler>
|
||||||
|
<Add option="-g" />
|
||||||
<Add option="-O2" />
|
<Add option="-O2" />
|
||||||
<Add option="-DNDEBUG" />
|
<Add option="-DNDEBUG" />
|
||||||
</Compiler>
|
</Compiler>
|
||||||
<Linker>
|
<Linker>
|
||||||
<Add option="-s" />
|
|
||||||
</Linker>
|
</Linker>
|
||||||
</Target>
|
</Target>
|
||||||
</Build>
|
</Build>
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
</VirtualDirectory>
|
</VirtualDirectory>
|
||||||
<Settings Type="Static Library">
|
<Settings Type="Static Library">
|
||||||
<Configuration Name="Debug" CompilerType="gnu g++" DebuggerType="GNU gdb debugger" Type="Static Library">
|
<Configuration Name="Debug" CompilerType="gnu g++" DebuggerType="GNU gdb debugger" Type="Static Library">
|
||||||
<General OutputFile="codelite/libpugixml_d.a" IntermediateDirectory="codelite/Debug" Command="./libpugixml_d.a" CommandArguments="" WorkingDirectory="codelite" PauseExecWhenProcTerminates="yes"/>
|
<General OutputFile="codelite/libpugixmld.a" IntermediateDirectory="codelite/Debug" Command="./libpugixmld.a" CommandArguments="" WorkingDirectory="codelite" PauseExecWhenProcTerminates="yes"/>
|
||||||
<Compiler Required="yes" Options="-g">
|
<Compiler Required="yes" Options="-g">
|
||||||
<Preprocessor Value="_DEBUG"/>
|
<Preprocessor Value="_DEBUG"/>
|
||||||
</Compiler>
|
</Compiler>
|
||||||
@ -29,10 +29,10 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration Name="Release" CompilerType="gnu g++" DebuggerType="GNU gdb debugger" Type="Static Library">
|
<Configuration Name="Release" CompilerType="gnu g++" DebuggerType="GNU gdb debugger" Type="Static Library">
|
||||||
<General OutputFile="codelite/libpugixml.a" IntermediateDirectory="codelite/Release" Command="./libpugixml.a" CommandArguments="" WorkingDirectory="codelite" PauseExecWhenProcTerminates="yes"/>
|
<General OutputFile="codelite/libpugixml.a" IntermediateDirectory="codelite/Release" Command="./libpugixml.a" CommandArguments="" WorkingDirectory="codelite" PauseExecWhenProcTerminates="yes"/>
|
||||||
<Compiler Required="yes" Options="-O2">
|
<Compiler Required="yes" Options="-g;-O2">
|
||||||
<Preprocessor Value="NDEBUG"/>
|
<Preprocessor Value="NDEBUG"/>
|
||||||
</Compiler>
|
</Compiler>
|
||||||
<Linker Required="yes" Options="-s">
|
<Linker Required="yes" Options="">
|
||||||
</Linker>
|
</Linker>
|
||||||
<ResourceCompiler Required="no" Options=""/>
|
<ResourceCompiler Required="no" Options=""/>
|
||||||
<CustomBuild Enabled="no">
|
<CustomBuild Enabled="no">
|
||||||
|
|||||||
@ -50,7 +50,7 @@
|
|||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
ProgramDataBaseFileName="$(OutDir)\pugixml_d.pdb"
|
ProgramDataBaseFileName="$(OutDir)\pugixmld.pdb"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
@ -65,7 +65,7 @@
|
|||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\pugixml_d.lib"
|
OutputFile="$(OutDir)\pugixmld.lib"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
@ -125,7 +125,7 @@
|
|||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
ProgramDataBaseFileName="$(OutDir)\pugixml_d.pdb"
|
ProgramDataBaseFileName="$(OutDir)\pugixmld.pdb"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
@ -140,7 +140,7 @@
|
|||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\pugixml_d.lib"
|
OutputFile="$(OutDir)\pugixmld.lib"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory="vs2005\x32"
|
OutputDirectory="vs2005\x32"
|
||||||
IntermediateDirectory="vs2005\x32\Debug"
|
IntermediateDirectory="vs2005\x32\DebugStatic"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -50,7 +50,7 @@
|
|||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb"
|
ProgramDataBaseFileName="$(OutDir)\pugixmlsd.pdb"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
@ -65,7 +65,7 @@
|
|||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\pugixml_sd.lib"
|
OutputFile="$(OutDir)\pugixmlsd.lib"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
@ -95,7 +95,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
OutputDirectory="vs2005\x64"
|
OutputDirectory="vs2005\x64"
|
||||||
IntermediateDirectory="vs2005\x64\Debug"
|
IntermediateDirectory="vs2005\x64\DebugStatic"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -125,7 +125,7 @@
|
|||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb"
|
ProgramDataBaseFileName="$(OutDir)\pugixmlsd.pdb"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
@ -140,7 +140,7 @@
|
|||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\pugixml_sd.lib"
|
OutputFile="$(OutDir)\pugixmlsd.lib"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
@ -170,7 +170,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory="vs2005\x32"
|
OutputDirectory="vs2005\x32"
|
||||||
IntermediateDirectory="vs2005\x32\Release"
|
IntermediateDirectory="vs2005\x32\ReleaseStatic"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -199,7 +199,7 @@
|
|||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
ProgramDataBaseFileName="$(OutDir)\pugixml_s.pdb"
|
ProgramDataBaseFileName="$(OutDir)\pugixmls.pdb"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
@ -214,7 +214,7 @@
|
|||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\pugixml_s.lib"
|
OutputFile="$(OutDir)\pugixmls.lib"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
@ -244,7 +244,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
OutputDirectory="vs2005\x64"
|
OutputDirectory="vs2005\x64"
|
||||||
IntermediateDirectory="vs2005\x64\Release"
|
IntermediateDirectory="vs2005\x64\ReleaseStatic"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -274,7 +274,7 @@
|
|||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
ProgramDataBaseFileName="$(OutDir)\pugixml_s.pdb"
|
ProgramDataBaseFileName="$(OutDir)\pugixmls.pdb"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
@ -289,7 +289,7 @@
|
|||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\pugixml_s.lib"
|
OutputFile="$(OutDir)\pugixmls.lib"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
|
|||||||
@ -49,7 +49,7 @@
|
|||||||
EnableFunctionLevelLinking="true"
|
EnableFunctionLevelLinking="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
ProgramDataBaseFileName="$(OutDir)\pugixml_d.pdb"
|
ProgramDataBaseFileName="$(OutDir)\pugixmld.pdb"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
@ -64,7 +64,7 @@
|
|||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\pugixml_d.lib"
|
OutputFile="$(OutDir)\pugixmld.lib"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
@ -123,7 +123,7 @@
|
|||||||
EnableFunctionLevelLinking="true"
|
EnableFunctionLevelLinking="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
ProgramDataBaseFileName="$(OutDir)\pugixml_d.pdb"
|
ProgramDataBaseFileName="$(OutDir)\pugixmld.pdb"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
@ -138,7 +138,7 @@
|
|||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\pugixml_d.lib"
|
OutputFile="$(OutDir)\pugixmld.lib"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory="vs2008\x32"
|
OutputDirectory="vs2008\x32"
|
||||||
IntermediateDirectory="vs2008\x32\Debug"
|
IntermediateDirectory="vs2008\x32\DebugStatic"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -49,7 +49,7 @@
|
|||||||
EnableFunctionLevelLinking="true"
|
EnableFunctionLevelLinking="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb"
|
ProgramDataBaseFileName="$(OutDir)\pugixmlsd.pdb"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
@ -64,7 +64,7 @@
|
|||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\pugixml_sd.lib"
|
OutputFile="$(OutDir)\pugixmlsd.lib"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
@ -94,7 +94,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
OutputDirectory="vs2008\x64"
|
OutputDirectory="vs2008\x64"
|
||||||
IntermediateDirectory="vs2008\x64\Debug"
|
IntermediateDirectory="vs2008\x64\DebugStatic"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -123,7 +123,7 @@
|
|||||||
EnableFunctionLevelLinking="true"
|
EnableFunctionLevelLinking="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
ProgramDataBaseFileName="$(OutDir)\pugixml_sd.pdb"
|
ProgramDataBaseFileName="$(OutDir)\pugixmlsd.pdb"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
@ -138,7 +138,7 @@
|
|||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\pugixml_sd.lib"
|
OutputFile="$(OutDir)\pugixmlsd.lib"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
@ -168,7 +168,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory="vs2008\x32"
|
OutputDirectory="vs2008\x32"
|
||||||
IntermediateDirectory="vs2008\x32\Release"
|
IntermediateDirectory="vs2008\x32\ReleaseStatic"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -196,7 +196,7 @@
|
|||||||
EnableFunctionLevelLinking="true"
|
EnableFunctionLevelLinking="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
ProgramDataBaseFileName="$(OutDir)\pugixml_s.pdb"
|
ProgramDataBaseFileName="$(OutDir)\pugixmls.pdb"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
@ -211,7 +211,7 @@
|
|||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\pugixml_s.lib"
|
OutputFile="$(OutDir)\pugixmls.lib"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
@ -241,7 +241,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
OutputDirectory="vs2008\x64"
|
OutputDirectory="vs2008\x64"
|
||||||
IntermediateDirectory="vs2008\x64\Release"
|
IntermediateDirectory="vs2008\x64\ReleaseStatic"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -270,7 +270,7 @@
|
|||||||
EnableFunctionLevelLinking="true"
|
EnableFunctionLevelLinking="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
ProgramDataBaseFileName="$(OutDir)\pugixml_s.pdb"
|
ProgramDataBaseFileName="$(OutDir)\pugixmls.pdb"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
@ -285,7 +285,7 @@
|
|||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLibrarianTool"
|
Name="VCLibrarianTool"
|
||||||
OutputFile="$(OutDir)\pugixml_s.lib"
|
OutputFile="$(OutDir)\pugixmls.lib"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
|
|||||||
@ -1,161 +1,191 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Debug|x64">
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release|x64">
|
<ProjectConfiguration Include="Release|x64">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectName>pugixml</ProjectName>
|
<ProjectGuid>{89A1E353-E2DC-495C-B403-742BE206ACED}</ProjectGuid>
|
||||||
<ProjectGuid>{89A1E353-E2DC-495C-B403-742BE206ACED}</ProjectGuid>
|
<RootNamespace>pugixml</RootNamespace>
|
||||||
<RootNamespace>pugixml</RootNamespace>
|
<Keyword>Win32Proj</Keyword>
|
||||||
<Keyword>Win32Proj</Keyword>
|
</PropertyGroup>
|
||||||
</PropertyGroup>
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</PropertyGroup>
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
</PropertyGroup>
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
</PropertyGroup>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
</PropertyGroup>
|
||||||
</PropertyGroup>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</ImportGroup>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
</PropertyGroup>
|
||||||
</ImportGroup>
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
</ImportGroup>
|
||||||
</ImportGroup>
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
</ImportGroup>
|
||||||
</ImportGroup>
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
</ImportGroup>
|
||||||
</ImportGroup>
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<PropertyGroup Label="UserMacros" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<PropertyGroup>
|
</ImportGroup>
|
||||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">vs2010\x32\</OutDir>
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">vs2010\x32\Debug\</IntDir>
|
</ImportGroup>
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">vs2010\x64\</OutDir>
|
<PropertyGroup Label="UserMacros" />
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">vs2010\x64\Debug\</IntDir>
|
<PropertyGroup>
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">vs2010\x32\</OutDir>
|
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">vs2010\x32\Release\</IntDir>
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">vs2010\x32\</OutDir>
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">vs2010\x64\</OutDir>
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">vs2010\x32\Debug\</IntDir>
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">vs2010\x64\Release\</IntDir>
|
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">pugixmld</TargetName>
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(ProjectName)_d</TargetName>
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">vs2010\x64\</OutDir>
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(ProjectName)_d</TargetName>
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">vs2010\x64\Debug\</IntDir>
|
||||||
</PropertyGroup>
|
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">pugixmld</TargetName>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">vs2010\x32\</OutDir>
|
||||||
<ClCompile>
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">vs2010\x32\Release\</IntDir>
|
||||||
<Optimization>Disabled</Optimization>
|
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">pugixml</TargetName>
|
||||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">vs2010\x64\</OutDir>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">vs2010\x64\Release\</IntDir>
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">pugixml</TargetName>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
</PropertyGroup>
|
||||||
<PrecompiledHeader>
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
</PrecompiledHeader>
|
<ClCompile>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<Optimization>Disabled</Optimization>
|
||||||
<ProgramDataBaseFileName>$(OutDir)pugixml_d.pdb</ProgramDataBaseFileName>
|
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
</ClCompile>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<ResourceCompile>
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
</ResourceCompile>
|
<PrecompiledHeader></PrecompiledHeader>
|
||||||
<Lib />
|
<WarningLevel>Level3</WarningLevel>
|
||||||
</ItemDefinitionGroup>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
</ClCompile>
|
||||||
<Midl>
|
<ResourceCompile>
|
||||||
<TargetEnvironment>X64</TargetEnvironment>
|
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
</Midl>
|
</ResourceCompile>
|
||||||
<ClCompile>
|
<Lib>
|
||||||
<Optimization>Disabled</Optimization>
|
<OutputFile>$(OutDir)pugixmld.lib</OutputFile>
|
||||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
</Lib>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<Link>
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
<SubSystem>Windows</SubSystem>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<PrecompiledHeader>
|
<ProgramDataBaseFileName>$(OutDir)pugixmld.pdb</ProgramDataBaseFileName>
|
||||||
</PrecompiledHeader>
|
</Link>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
</ItemDefinitionGroup>
|
||||||
<ProgramDataBaseFileName>$(OutDir)pugixml_d.pdb</ProgramDataBaseFileName>
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<ClCompile>
|
||||||
</ClCompile>
|
<Optimization>Disabled</Optimization>
|
||||||
<ResourceCompile>
|
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
</ResourceCompile>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<Lib />
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||||
</ItemDefinitionGroup>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<PrecompiledHeader></PrecompiledHeader>
|
||||||
<ClCompile>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<Optimization>Full</Optimization>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
</ClCompile>
|
||||||
<StringPooling>true</StringPooling>
|
<ResourceCompile>
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
</ResourceCompile>
|
||||||
<PrecompiledHeader>
|
<Lib>
|
||||||
</PrecompiledHeader>
|
<OutputFile>$(OutDir)pugixmld.lib</OutputFile>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
</Lib>
|
||||||
<ProgramDataBaseFileName>$(OutDir)pugixml.pdb</ProgramDataBaseFileName>
|
<Link>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<SubSystem>Windows</SubSystem>
|
||||||
</ClCompile>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<ResourceCompile>
|
<ProgramDataBaseFileName>$(OutDir)pugixmld.pdb</ProgramDataBaseFileName>
|
||||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
</Link>
|
||||||
</ResourceCompile>
|
</ItemDefinitionGroup>
|
||||||
<Lib />
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
</ItemDefinitionGroup>
|
<ClCompile>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
<Optimization>Full</Optimization>
|
||||||
<Midl>
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<TargetEnvironment>X64</TargetEnvironment>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
</Midl>
|
<StringPooling>true</StringPooling>
|
||||||
<ClCompile>
|
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||||
<Optimization>Full</Optimization>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PrecompiledHeader></PrecompiledHeader>
|
||||||
<StringPooling>true</StringPooling>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
</ClCompile>
|
||||||
<PrecompiledHeader>
|
<ResourceCompile>
|
||||||
</PrecompiledHeader>
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
</ResourceCompile>
|
||||||
<ProgramDataBaseFileName>$(OutDir)pugixml.pdb</ProgramDataBaseFileName>
|
<Lib>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<OutputFile>$(OutDir)pugixml.lib</OutputFile>
|
||||||
</ClCompile>
|
</Lib>
|
||||||
<ResourceCompile>
|
<Link>
|
||||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<SubSystem>Windows</SubSystem>
|
||||||
</ResourceCompile>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<Lib />
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
</ItemDefinitionGroup>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<ItemGroup>
|
<ProgramDataBaseFileName>$(OutDir)pugixml.pdb</ProgramDataBaseFileName>
|
||||||
<ClInclude Include="..\src\pugixml.hpp" />
|
</Link>
|
||||||
<ClInclude Include="..\src\pugiconfig.hpp" />
|
</ItemDefinitionGroup>
|
||||||
</ItemGroup>
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
<ItemGroup>
|
<ClCompile>
|
||||||
<ClCompile Include="..\src\pugixml.cpp" />
|
<Optimization>Full</Optimization>
|
||||||
</ItemGroup>
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<StringPooling>true</StringPooling>
|
||||||
</ImportGroup>
|
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<PrecompiledHeader></PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
|
</ClCompile>
|
||||||
|
<ResourceCompile>
|
||||||
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
</ResourceCompile>
|
||||||
|
<Lib>
|
||||||
|
<OutputFile>$(OutDir)pugixml.lib</OutputFile>
|
||||||
|
</Lib>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<ProgramDataBaseFileName>$(OutDir)pugixml.pdb</ProgramDataBaseFileName>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="..\src\pugixml.hpp" />
|
||||||
|
<ClInclude Include="..\src\pugiconfig.hpp" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="..\src\pugixml.cpp">
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@ -1,163 +1,191 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Debug|x64">
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release|x64">
|
<ProjectConfiguration Include="Release|x64">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectName>pugixml</ProjectName>
|
<ProjectGuid>{89A1E353-E2DC-495C-B403-742BE206ACED}</ProjectGuid>
|
||||||
<ProjectGuid>{89A1E353-E2DC-495C-B403-742BE206ACED}</ProjectGuid>
|
<RootNamespace>pugixml</RootNamespace>
|
||||||
<RootNamespace>pugixml</RootNamespace>
|
<Keyword>Win32Proj</Keyword>
|
||||||
<Keyword>Win32Proj</Keyword>
|
</PropertyGroup>
|
||||||
</PropertyGroup>
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</PropertyGroup>
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
</PropertyGroup>
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
</PropertyGroup>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
</PropertyGroup>
|
||||||
</PropertyGroup>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</ImportGroup>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
</PropertyGroup>
|
||||||
</ImportGroup>
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
</ImportGroup>
|
||||||
</ImportGroup>
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
</ImportGroup>
|
||||||
</ImportGroup>
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
</ImportGroup>
|
||||||
</ImportGroup>
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<PropertyGroup Label="UserMacros" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<PropertyGroup>
|
</ImportGroup>
|
||||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">vs2010\x32\</OutDir>
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">vs2010\x32\Debug\</IntDir>
|
</ImportGroup>
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">vs2010\x64\</OutDir>
|
<PropertyGroup Label="UserMacros" />
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">vs2010\x64\Debug\</IntDir>
|
<PropertyGroup>
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">vs2010\x32\</OutDir>
|
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">vs2010\x32\Release\</IntDir>
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">vs2010\x32\</OutDir>
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">vs2010\x64\</OutDir>
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">vs2010\x32\DebugStatic\</IntDir>
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">vs2010\x64\Release\</IntDir>
|
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">pugixmlsd</TargetName>
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(ProjectName)_sd</TargetName>
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">vs2010\x64\</OutDir>
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(ProjectName)_sd</TargetName>
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">vs2010\x64\DebugStatic\</IntDir>
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(ProjectName)_s</TargetName>
|
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">pugixmlsd</TargetName>
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(ProjectName)_s</TargetName>
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">vs2010\x32\</OutDir>
|
||||||
</PropertyGroup>
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">vs2010\x32\ReleaseStatic\</IntDir>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">pugixmls</TargetName>
|
||||||
<ClCompile>
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">vs2010\x64\</OutDir>
|
||||||
<Optimization>Disabled</Optimization>
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">vs2010\x64\ReleaseStatic\</IntDir>
|
||||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">pugixmls</TargetName>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
</PropertyGroup>
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<ClCompile>
|
||||||
<PrecompiledHeader>
|
<Optimization>Disabled</Optimization>
|
||||||
</PrecompiledHeader>
|
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<ProgramDataBaseFileName>$(OutDir)pugixml_sd.pdb</ProgramDataBaseFileName>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
</ClCompile>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<ResourceCompile>
|
<PrecompiledHeader></PrecompiledHeader>
|
||||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
</ResourceCompile>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<Lib />
|
</ClCompile>
|
||||||
</ItemDefinitionGroup>
|
<ResourceCompile>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<Midl>
|
</ResourceCompile>
|
||||||
<TargetEnvironment>X64</TargetEnvironment>
|
<Lib>
|
||||||
</Midl>
|
<OutputFile>$(OutDir)pugixmlsd.lib</OutputFile>
|
||||||
<ClCompile>
|
</Lib>
|
||||||
<Optimization>Disabled</Optimization>
|
<Link>
|
||||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<SubSystem>Windows</SubSystem>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
<ProgramDataBaseFileName>$(OutDir)pugixmlsd.pdb</ProgramDataBaseFileName>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
</Link>
|
||||||
<PrecompiledHeader>
|
</ItemDefinitionGroup>
|
||||||
</PrecompiledHeader>
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<ClCompile>
|
||||||
<ProgramDataBaseFileName>$(OutDir)pugixml_sd.pdb</ProgramDataBaseFileName>
|
<Optimization>Disabled</Optimization>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
</ClCompile>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<ResourceCompile>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
</ResourceCompile>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<Lib />
|
<PrecompiledHeader></PrecompiledHeader>
|
||||||
</ItemDefinitionGroup>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<ClCompile>
|
</ClCompile>
|
||||||
<Optimization>Full</Optimization>
|
<ResourceCompile>
|
||||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<StringPooling>true</StringPooling>
|
</ResourceCompile>
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
<Lib>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<OutputFile>$(OutDir)pugixmlsd.lib</OutputFile>
|
||||||
<PrecompiledHeader>
|
</Lib>
|
||||||
</PrecompiledHeader>
|
<Link>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<SubSystem>Windows</SubSystem>
|
||||||
<ProgramDataBaseFileName>$(OutDir)pugixml_s.pdb</ProgramDataBaseFileName>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<ProgramDataBaseFileName>$(OutDir)pugixmlsd.pdb</ProgramDataBaseFileName>
|
||||||
</ClCompile>
|
</Link>
|
||||||
<ResourceCompile>
|
</ItemDefinitionGroup>
|
||||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
</ResourceCompile>
|
<ClCompile>
|
||||||
<Lib />
|
<Optimization>Full</Optimization>
|
||||||
</ItemDefinitionGroup>
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<Midl>
|
<StringPooling>true</StringPooling>
|
||||||
<TargetEnvironment>X64</TargetEnvironment>
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
</Midl>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<ClCompile>
|
<PrecompiledHeader></PrecompiledHeader>
|
||||||
<Optimization>Full</Optimization>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<StringPooling>true</StringPooling>
|
</ClCompile>
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
<ResourceCompile>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>
|
</ResourceCompile>
|
||||||
</PrecompiledHeader>
|
<Lib>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<OutputFile>$(OutDir)pugixmls.lib</OutputFile>
|
||||||
<ProgramDataBaseFileName>$(OutDir)pugixml_s.pdb</ProgramDataBaseFileName>
|
</Lib>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<Link>
|
||||||
</ClCompile>
|
<SubSystem>Windows</SubSystem>
|
||||||
<ResourceCompile>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
</ResourceCompile>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<Lib />
|
<ProgramDataBaseFileName>$(OutDir)pugixmls.pdb</ProgramDataBaseFileName>
|
||||||
</ItemDefinitionGroup>
|
</Link>
|
||||||
<ItemGroup>
|
</ItemDefinitionGroup>
|
||||||
<ClInclude Include="..\src\pugixml.hpp" />
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
<ClInclude Include="..\src\pugiconfig.hpp" />
|
<ClCompile>
|
||||||
</ItemGroup>
|
<Optimization>Full</Optimization>
|
||||||
<ItemGroup>
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<ClCompile Include="..\src\pugixml.cpp" />
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
</ItemGroup>
|
<StringPooling>true</StringPooling>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
</ImportGroup>
|
<PrecompiledHeader></PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
|
</ClCompile>
|
||||||
|
<ResourceCompile>
|
||||||
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
</ResourceCompile>
|
||||||
|
<Lib>
|
||||||
|
<OutputFile>$(OutDir)pugixmls.lib</OutputFile>
|
||||||
|
</Lib>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<ProgramDataBaseFileName>$(OutDir)pugixmls.pdb</ProgramDataBaseFileName>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="..\src\pugixml.hpp" />
|
||||||
|
<ClInclude Include="..\src\pugiconfig.hpp" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="..\src\pugixml.cpp">
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user