mirror of
https://github.com/SWG-Source/client-tools.git
synced 2026-07-13 22:01:07 -04:00
missing project/build files
This commit is contained in:
@@ -29,7 +29,6 @@ compile/
|
||||
*.lss
|
||||
*.map
|
||||
*.sym
|
||||
build/
|
||||
Makefile
|
||||
Makefile.in
|
||||
src/compile
|
||||
|
||||
@@ -0,0 +1,81 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Master Makefile for Engine
|
||||
#
|
||||
# This file invokes the makefiles for specific projects as needed.
|
||||
#
|
||||
# Typically used targets:
|
||||
# make debug Builds the debug version of all applications
|
||||
# make release Builds the release version of all applications
|
||||
# make publish Does the same thing as "make debug", then copies the
|
||||
# newly-build executables to the exe/linux directory
|
||||
###############################################################################
|
||||
###############################################################################
|
||||
# Definitions and includes
|
||||
###############################################################################
|
||||
|
||||
SRCDIR =../..
|
||||
ENGINE_MAKE_DIR =$(SRCDIR)/engine/build/linux
|
||||
GAME_MAKE_DIR =$(SRCDIR)/game/build/linux
|
||||
|
||||
###############################################################################
|
||||
# Rules to invoke the makefiles for specific applications
|
||||
###############################################################################
|
||||
|
||||
debug_engine:
|
||||
+@make -C $(ENGINE_MAKE_DIR) engine_debug
|
||||
|
||||
debug_game:
|
||||
+@make -C $(GAME_MAKE_DIR) game_debug
|
||||
|
||||
debug:
|
||||
+@make -C $(GAME_MAKE_DIR) debug_libs
|
||||
+@make debug_engine
|
||||
+@make debug_game
|
||||
|
||||
###############################################################################
|
||||
# Special targets
|
||||
###############################################################################
|
||||
|
||||
clean_engine:
|
||||
+@make -C $(ENGINE_MAKE_DIR) clean
|
||||
|
||||
clean_game:
|
||||
+@make -C $(GAME_MAKE_DIR) clean
|
||||
|
||||
clean: clean_engine clean_game
|
||||
|
||||
|
||||
lint_engine:
|
||||
+@make -C $(ENGINE_MAKE_DIR) lint
|
||||
|
||||
lint_game:
|
||||
+@make -C $(GAME_MAKE_DIR) lint
|
||||
|
||||
lint: lint_engine lint_game
|
||||
|
||||
###############################################################################
|
||||
# More Special targets
|
||||
###############################################################################
|
||||
|
||||
cleanall:
|
||||
@find $(SRCDIR) -name .depend -exec rm {} \;
|
||||
@find $(SRCDIR) -name "*.d" -exec rm -f {} \;
|
||||
@find $(SRCDIR) -type d -name compile -depth -exec rm -rf {} \;
|
||||
@find $(SRCDIR) -name "*.o" -exec rm -f {} \;
|
||||
@find $(SRCDIR) -name "*.a" | grep -v libz.a | grep -v libpcre.a | xargs rm -f;
|
||||
# TODO So the above is pretty hacky, we stillhave these two lame .a files checked into p4.
|
||||
|
||||
cleandepend:
|
||||
@find $(SRCDIR) -name .depend -exec rm {} \;
|
||||
|
||||
#dependcheck: .cppsums
|
||||
# -@mv .cppsums .cppsums~
|
||||
# @find $(SRCDIR) -name "*.cpp" | sum > .cppsums
|
||||
# @if ! /usr/bin/diff .cppsums .cppsums~ > /dev/null; then find $(SRCDIR) -name .depend -exec rm {} \; ; fi;
|
||||
# @rm .cppsums~
|
||||
|
||||
#.cppsums:
|
||||
# @find $(SRCDIR) -name .depend -exec rm {} \;
|
||||
# @find $(SRCDIR) -name "*.cpp" | sum > .cppsums
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
lib_LTLIBRARIES=libSharedFoundation.la
|
||||
##libSharedFoundation_la_SOURCES=/swg/swg/current/src/engine/shared/library/sharedFoundation/src/linux/vsnprintf.cpp
|
||||
libSharedFoundation_la_SOURCES=$(mysources)
|
||||
AM_CPPFLAGS=-I$(base_dir_soe_shared_foundation)/include/public -I $(libSharedFoundation_la_SOURCES)
|
||||
@@ -0,0 +1,17 @@
|
||||
#
|
||||
# Copyright 2001, Sony Online Entertainment, Inc.
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# Makefile for creating Emacs workspace data file for fast workspace
|
||||
# file opening.
|
||||
|
||||
WORKSPACE_FILENAME=swg.ews
|
||||
PERL=perl
|
||||
|
||||
all:
|
||||
$(PERL) -w make_workspace.pl ../.. > ${WORKSPACE_FILENAME}
|
||||
$(PERL) -w make_workspace.pl ../../../tools >> ${WORKSPACE_FILENAME}
|
||||
$(PERL) -w make_workspace.pl ../../../dsrc >> ${WORKSPACE_FILENAME}
|
||||
|
||||
clean:
|
||||
rm -f ${WORKSPACE_FILENAME}
|
||||
@@ -0,0 +1,56 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
use File::Find;
|
||||
|
||||
# Process command line arguments.
|
||||
while ($ARGV[0] =~ /^-/)
|
||||
{
|
||||
$_ = shift;
|
||||
|
||||
if ($_ eq "--debug")
|
||||
{
|
||||
$debug = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
die "unknown command line option";
|
||||
}
|
||||
}
|
||||
|
||||
# Determine directory to run this on.
|
||||
@findDirs = @ARGV ? @ARGV : ('.');
|
||||
|
||||
# Scan for appropriate files.
|
||||
find(\&FindHandler, @findDirs);
|
||||
|
||||
# Done.
|
||||
exit(0);
|
||||
|
||||
# ===================================================================
|
||||
|
||||
sub FindHandler
|
||||
{
|
||||
if (-d $_)
|
||||
{
|
||||
# Examining a directory entry.
|
||||
|
||||
# Prune the directory if it's one I want to ignore. This
|
||||
# stops the program from descending any further down this directory.
|
||||
if (m/^(compile|external|Debug|Optimized|Production|Release)$/i)
|
||||
{
|
||||
# Prune it.
|
||||
$File::Find::prune = 1;
|
||||
print STDERR "[Pruned Directory Entry: $File::Find::name]\n" if ($debug);
|
||||
}
|
||||
}
|
||||
elsif (-f $_)
|
||||
{
|
||||
# Handle files that should go in the workspace file.
|
||||
if (m/^.*(c|cpp|def|h|hpp|java|lnt|pl|pm|py|script(?:lib)?|sql|tab|txt)$/)
|
||||
{
|
||||
print "$_:$File::Find::dir/\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# ===================================================================
|
||||
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="_all"
|
||||
ProjectGUID="{B333AC21-A6B4-4F5E-92A9-98335FB8C4AE}"
|
||||
Keyword="MakeFileProj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Optimized|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{B333AC21-A6B4-4F5E-92A9-98335FB8C4AE}</ProjectGuid>
|
||||
<Keyword>MakeFileProj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="_all_client"
|
||||
ProjectGUID="{A4AC1380-D2AB-4B0D-824A-4918680F5CA4}"
|
||||
Keyword="MakeFileProj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_client.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Optimized|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_client.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_client.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{A4AC1380-D2AB-4B0D-824A-4918680F5CA4}</ProjectGuid>
|
||||
<Keyword>MakeFileProj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_client.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_client.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_client.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="_all_client_libraries"
|
||||
ProjectGUID="{7986223E-4B89-44B1-AED5-716A5562AAB6}"
|
||||
Keyword="MakeFileProj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_client_libraries.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Optimized|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_client_libraries.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_client_libraries.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{7986223E-4B89-44B1-AED5-716A5562AAB6}</ProjectGuid>
|
||||
<Keyword>MakeFileProj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_client_libraries.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_client_libraries.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_client_libraries.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="_all_server"
|
||||
ProjectGUID="{52961080-869C-4053-84B4-44D4DEC48B8B}"
|
||||
Keyword="MakeFileProj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_server.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Optimized|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_server.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_server.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{52961080-869C-4053-84B4-44D4DEC48B8B}</ProjectGuid>
|
||||
<Keyword>MakeFileProj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_server.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_server.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_server.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="_all_server_libraries"
|
||||
ProjectGUID="{D1FB68C1-A139-4458-9984-1514AC15AC81}"
|
||||
Keyword="MakeFileProj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_server_libraries.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_server_libraries.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Optimized|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_server_libraries.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{D1FB68C1-A139-4458-9984-1514AC15AC81}</ProjectGuid>
|
||||
<Keyword>MakeFileProj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_server_libraries.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_server_libraries.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_server_libraries.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="_all_shared_libraries"
|
||||
ProjectGUID="{BEAAA971-E712-4662-A9EE-35AFA3D3F231}"
|
||||
Keyword="MakeFileProj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_shared_libraries.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_shared_libraries.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Optimized|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_shared_libraries.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{BEAAA971-E712-4662-A9EE-35AFA3D3F231}</ProjectGuid>
|
||||
<Keyword>MakeFileProj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_shared_libraries.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_shared_libraries.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_shared_libraries.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="_all_tools"
|
||||
ProjectGUID="{CE9F4DC5-8DAC-4704-925C-0E7D0581375C}"
|
||||
Keyword="MakeFileProj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_tools.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Optimized|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_tools.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="."
|
||||
IntermediateDirectory="."
|
||||
ConfigurationType="10"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TypeLibraryName="./_all_tools.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{CE9F4DC5-8DAC-4704-925C-0E7D0581375C}</ProjectGuid>
|
||||
<Keyword>MakeFileProj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>.\</OutDir>
|
||||
<IntDir>.\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_tools.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_tools.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>./_all_tools.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,198 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Master Makefile for Engine
|
||||
#
|
||||
# This file invokes the makefiles for specific engine projects as needed.
|
||||
#
|
||||
# Organization:
|
||||
# Targets
|
||||
# Definitions and includes
|
||||
# Application build rules (all applications build required libs implicitly)
|
||||
# Special targets (e.g. clean, publish, dependcheck)
|
||||
#
|
||||
# Typically used targets:
|
||||
# make engine_debug Builds the debug version of all libs/applications
|
||||
# make engine_release Builds the release version of all libs/applications
|
||||
# make noGameServer_<debug/release> Builds everything except the SwgGameServer and
|
||||
# SwgDatabaseServer procs. (libgameServer.a is
|
||||
# enormous, so excluding it is sometimes a good
|
||||
# idea, if you do not really need to rebuild it.)
|
||||
# make <servername> Builds a server process and any libraries needed by that process.
|
||||
# e.g. make GameServer_d
|
||||
###############################################################################
|
||||
|
||||
noGameServer_debug: CentralServer_d \
|
||||
ConnectionServer_d \
|
||||
LoginServer_d \
|
||||
ServerConsole_d \
|
||||
PlanetServer_d \
|
||||
TaskManager_d \
|
||||
ChatServer_d \
|
||||
LogServer_d \
|
||||
MetricsServer_d \
|
||||
LoginPing_d \
|
||||
CustomerServiceServer_d \
|
||||
CommoditiesServer_d \
|
||||
|
||||
noGameServer_release: CentralServer_r \
|
||||
ConnectionServer_r \
|
||||
LoginServer_r \
|
||||
ServerConsole_r \
|
||||
PlanetServer_r \
|
||||
TaskManager_r \
|
||||
ChatServer_r \
|
||||
LogServer_r \
|
||||
MetricsServer_r \
|
||||
LoginPing_r \
|
||||
CustomerServiceServer_r \
|
||||
CommoditiesServer_r \
|
||||
|
||||
engine_debug: noGameServer_debug \
|
||||
|
||||
engine_release: noGameServer_release \
|
||||
SwgGameServer_r \
|
||||
SwgDatabaseServer_r \
|
||||
|
||||
###############################################################################
|
||||
# Definitions and includes
|
||||
###############################################################################
|
||||
|
||||
SRCDIR =../../..
|
||||
SERVER_ENGINE_DIR =$(SRCDIR)/engine/server/application
|
||||
SHARED_ENGINE_DIR =$(SRCDIR)/engine/shared/application
|
||||
|
||||
SERVER_GAME_DIR =$(SRCDIR)/game/server/application
|
||||
|
||||
###############################################################################
|
||||
# Rules to invoke the makefiles for specific applications
|
||||
###############################################################################
|
||||
|
||||
debug_libs:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/PhonyApp/build/linux debug
|
||||
|
||||
CentralServer_d:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/CentralServer/build/linux debug
|
||||
|
||||
CentralServer_r:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/CentralServer/build/linux release
|
||||
|
||||
ConnectionServer_d:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/ConnectionServer/build/linux debug
|
||||
|
||||
ConnectionServer_r:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/ConnectionServer/build/linux release
|
||||
|
||||
LoginServer_d:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/LoginServer/build/linux debug
|
||||
|
||||
LoginServer_r:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/LoginServer/build/linux release
|
||||
|
||||
ServerConsole_d:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/ServerConsole/build/linux debug
|
||||
|
||||
ServerConsole_r:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/ServerConsole/build/linux release
|
||||
|
||||
PlanetServer_d:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/PlanetServer/build/linux debug
|
||||
|
||||
PlanetServer_r:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/PlanetServer/build/linux release
|
||||
|
||||
TaskManager_d:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/TaskManager/build/linux debug
|
||||
|
||||
TaskManager_r:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/TaskManager/build/linux release
|
||||
|
||||
ChatServer_d:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/ChatServer/build/linux debug
|
||||
|
||||
ChatServer_r:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/ChatServer/build/linux release
|
||||
|
||||
CustomerServiceServer_d:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/CustomerServiceServer/build/linux debug
|
||||
|
||||
CustomerServiceServer_r:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/CustomerServiceServer/build/linux release
|
||||
|
||||
LoginPing_d:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/LoginPing/build/linux debug
|
||||
|
||||
LoginPing_r:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/LoginPing/build/linux release
|
||||
|
||||
MetricsServer_d:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/MetricsServer/build/linux debug
|
||||
|
||||
MetricsServer_r:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/MetricsServer/build/linux release
|
||||
|
||||
LogServer_d:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/LogServer/build/linux debug
|
||||
|
||||
LogServer_r:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/LogServer/build/linux release
|
||||
|
||||
TemplateCompiler_d:
|
||||
+@make -C $(SHARED_ENGINE_DIR)/TemplateCompiler/build/linux debug
|
||||
|
||||
TemplateCompiler_r:
|
||||
+@make -C $(SHARED_ENGINE_DIR)/TemplateCompiler/build/linux release
|
||||
|
||||
DataTableTool_d:
|
||||
+@make -C $(SHARED_ENGINE_DIR)/DataTableTool/build/linux debug
|
||||
|
||||
DataTableTool_r:
|
||||
+@make -C $(SHARED_ENGINE_DIR)/DataTableTool/build/linux release
|
||||
|
||||
GameServer_d:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/GameServer/build/linux debug
|
||||
|
||||
GameServer_r:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/GameServer/build/linux release
|
||||
|
||||
CommoditiesServer_d:
|
||||
@echo " BOGUS CommoditiesServer_d rule, ignoring..."
|
||||
# [ ! -f $(SRCDIR)/../dev/linux/CommoditiesServer_d ] || \
|
||||
# chmod u+w $(SRCDIR)/../dev/linux/CommoditiesServer_d
|
||||
# cp $(SRCDIR)/../exe/linux/CommoditiesServer_d $(SRCDIR)/../dev/linux
|
||||
|
||||
CommoditiesServer_r:
|
||||
[ ! -f $(SRCDIR)/../dev/linux/CommoditiesServer_r ] || \
|
||||
chmod u+w $(SRCDIR)/../dev/linux/CommoditiesServer_r
|
||||
cp $(SRCDIR)/../exe/linux/CommoditiesServer_r $(SRCDIR)/../dev/linux
|
||||
|
||||
###############################################################################
|
||||
# Special targets
|
||||
###############################################################################
|
||||
|
||||
clean:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/LoginServer/build/linux clean
|
||||
+@make -C $(SERVER_ENGINE_DIR)/ServerConsole/build/linux clean
|
||||
+@make -C $(SERVER_ENGINE_DIR)/CentralServer/build/linux clean
|
||||
+@make -C $(SERVER_GAME_DIR)/SwgGameServer/build/linux clean
|
||||
+@make -C $(SERVER_GAME_DIR)/SwgDatabaseServer/build/linux clean
|
||||
+@make -C $(SERVER_ENGINE_DIR)/ConnectionServer/build/linux clean
|
||||
+@make -C $(SERVER_ENGINE_DIR)/TaskManager/build/linux clean
|
||||
+@make -C $(SERVER_ENGINE_DIR)/PlanetServer/build/linux clean
|
||||
+@make -C $(SERVER_ENGINE_DIR)/ChatServer/build/linux clean
|
||||
+@make -C $(SERVER_ENGINE_DIR)/CustomerServiceServer/build/linux clean
|
||||
+@make -C $(SERVER_ENGINE_DIR)/LogServer/build/linux clean
|
||||
+@make -C $(SERVER_ENGINE_DIR)/MetricsServer/build/linux clean
|
||||
+@make -C $(SERVER_ENGINE_DIR)/LoginPing/build/linux clean
|
||||
|
||||
lint:
|
||||
+@make -C $(SERVER_ENGINE_DIR)/LoginServer/build/linux lint
|
||||
+@make -C $(SERVER_ENGINE_DIR)/ServerConsole/build/linux lint
|
||||
+@make -C $(SERVER_ENGINE_DIR)/CentralServer/build/linux lint
|
||||
+@make -C $(SERVER_ENGINE_DIR)/SwgGameServer/build/linux lint
|
||||
+@make -C $(SERVER_ENGINE_DIR)/SwgDatabaseServer/build/linux lint
|
||||
+@make -C $(SERVER_ENGINE_DIR)/ConnectionServer/build/linux lint
|
||||
+@make -C $(SERVER_ENGINE_DIR)/TaskManager/build/linux lint
|
||||
+@make -C $(SERVER_ENGINE_DIR)/PlanetServer/build/linux lint
|
||||
+@make -C $(SERVER_ENGINE_DIR)/ChatServer/build/linux lint
|
||||
+@make -C $(SERVER_ENGINE_DIR)/LogServer/build/linux lint
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
PLATFORM =linux
|
||||
#PLATFORM_DEFINES =-DLINUX -DJNI_IBM_JAVA
|
||||
PLATFORM_DEFINES =-DLINUX
|
||||
@@ -0,0 +1,130 @@
|
||||
ifeq ($(VERBOSE_BUILD),)
|
||||
V =@
|
||||
else
|
||||
V =
|
||||
endif
|
||||
|
||||
DEBUG_OBJ_DIR = ../../../../../../compile/linux/$(OUTPUT)/debug
|
||||
RELEASE_OBJ_DIR = ../../../../../../compile/linux/$(OUTPUT)/release
|
||||
|
||||
TOOLS_DIR = ../../../../../../../tools
|
||||
|
||||
FINAL_OUTPUT_DEBUG = $(OUTPUT)_d
|
||||
FINAL_OUTPUT_RELEASE = $(OUTPUT)_r
|
||||
|
||||
DEPENDENCY_LIST = $(SRC_LIST:.cpp=.d)
|
||||
|
||||
RELEASE_OBJ_LIST = $(addprefix $(RELEASE_OBJ_DIR)/, $(notdir $(SRC_LIST:.cpp=.o)))
|
||||
DEBUG_OBJ_LIST = $(addprefix $(DEBUG_OBJ_DIR)/, $(notdir $(SRC_LIST:.cpp=.o)))
|
||||
|
||||
INCLUDE_DIRS += /usr/include /usr/include/libxml2
|
||||
|
||||
CPP_FLAGS_RELEASE = -g -O2 $(addprefix -I,$(INCLUDE_DIRS)) $(RELEASE_PLATFORM_CPP_FLAGS) $(PLATFORM_DEFINES) -Wno-ctor-dtor-privacy -D__STL_NO_BAD_ALLOC
|
||||
CPP_FLAGS_DEBUG = -g $(addprefix -I,$(INCLUDE_DIRS)) $(DEBUG_PLATFORM_CPP_FLAGS) $(PLATFORM_DEFINES) -Wall -Wno-unknown-pragmas -Werror -Wno-ctor-dtor-privacy -D_DEBUG -D__STL_NO_BAD_ALLOC -Wformat -Wreturn-type -Wimplicit
|
||||
|
||||
#DEBUG_LINK_FLAGS += -lncurses -rdynamic -Xlinker -rpath -Xlinker ./
|
||||
DEBUG_LINK_FLAGS += -lxml2 -lz -lncurses -Wl,--rpath -Wl,$(SHARED_DEBUG_LIB_PATH)
|
||||
|
||||
RELEASE_LINK_FLAGS += -rdynamic -Xlinker -rpath -Xlinker ./
|
||||
|
||||
BASE_OUTPUT_DIR = ../../../../../../../dev/linux
|
||||
DEBUG_FINAL_OUTPUT_DIR = $(BASE_OUTPUT_DIR)/debug
|
||||
|
||||
DEBUG_SYM_LINK = $(V)cd $(BASE_OUTPUT_DIR) && ln -sf debug/$(FINAL_OUTPUT_DEBUG) $(OUTPUT)
|
||||
|
||||
|
||||
LINT_SCRIPT = $(BOOTPRINT_SRC_PATH)/../tools/swglint.sh
|
||||
LINT_TARGETS = $(addsuffix .lint,$(SRC_LIST))
|
||||
|
||||
#Following separates the shared libraries into names and paths
|
||||
#so that we can link them with just their names, not the entire path:
|
||||
|
||||
DEBUG_SHARED_LIB_LINK_FLAGS = $(addprefix -l, $(notdir $(subst lib,,$(DEBUG_SHARED_LIBRARIES:.so=))))
|
||||
DEBUG_SHARED_LIB_LINK_DIRS = -L$(SHARED_DEBUG_LIB_PATH)
|
||||
DEBUG_DEPS = $(DEBUG_LINK_LIBRARIES:.a=.a_dep)
|
||||
SHARED_DEBUG_DEPS = $(DEBUG_SHARED_LIBRARIES:.so=.so_dep)
|
||||
|
||||
|
||||
all: debug
|
||||
|
||||
lint: $(LINT_TARGETS)
|
||||
|
||||
|
||||
%.cpp.lint : %.cpp
|
||||
@echo prerequisite: $(subst .lint,,$@)
|
||||
@echo output: $@
|
||||
$(LINT_SCRIPT) $(subst .lint,,$@)
|
||||
touch $@
|
||||
|
||||
#######################################################
|
||||
# Debug
|
||||
#######################################################
|
||||
|
||||
debug: .depend $(DEBUG_DEPS) $(SHARED_DEBUG_DEPS) debug_custom_step
|
||||
+$(V)$(MAKE) $(DEBUG_FINAL_OUTPUT_DIR)/$(FINAL_OUTPUT_DEBUG)
|
||||
|
||||
$(DEBUG_FINAL_OUTPUT_DIR)/$(FINAL_OUTPUT_DEBUG): $(DEBUG_FINAL_OUTPUT_DIR) $(DEBUG_OBJ_DIR)/$(OUTPUT)
|
||||
@echo Creating debug: $(OUTPUT) $@
|
||||
$(V)cp -f $(DEBUG_OBJ_DIR)/$(OUTPUT) $(DEBUG_FINAL_OUTPUT_DIR)/$(FINAL_OUTPUT_DEBUG)
|
||||
$(DEBUG_SYM_LINK)
|
||||
|
||||
$(DEBUG_FINAL_OUTPUT_DIR):
|
||||
$(V)mkdir -p $(DEBUG_FINAL_OUTPUT_DIR)
|
||||
|
||||
$(DEBUG_OBJ_DIR)/$(OUTPUT): $(DEBUG_OBJ_DIR) $(DEBUG_OBJ_LIST) $(DEBUG_LINK_LIBRARIES)
|
||||
@echo Creating debug: $(OUTPUT) $@
|
||||
$(V)$(CPP) $(CPP_FLAGS_DEBUG) $(DEBUG_LINK_FLAGS) -o $(DEBUG_OBJ_DIR)/$(OUTPUT) $(DEBUG_SHARED_LIB_LINK_DIRS) $(DEBUG_SHARED_LIB_LINK_FLAGS) $(DEBUG_OBJ_LIST) $(DEBUG_LINK_LIBRARIES)
|
||||
$(DEBUG_SYM_LINK)
|
||||
|
||||
$(DEBUG_OBJ_DIR):
|
||||
$(V)mkdir -p $(DEBUG_OBJ_DIR)
|
||||
|
||||
$(DEBUG_OBJ_LIST):
|
||||
@echo $(notdir $(basename $@)).cpp
|
||||
$(V)$(CPP) $(CPP_FLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SRC_LIST))
|
||||
|
||||
|
||||
#######################################################
|
||||
# .depend
|
||||
#######################################################
|
||||
|
||||
ifneq ($(MAKECMDGOALS),clean)
|
||||
ifneq ($(MAKECMDGOALS),depend)
|
||||
include .depend
|
||||
endif
|
||||
endif
|
||||
|
||||
#depend: .depend $(DEPENDENCY_LIST)
|
||||
# $(V)perl $(BOOTPRINT_SRC_PATH)/../tools/programmer/linux/dependcat.pl $(DEPENDENCY_LIST) > .depend
|
||||
# $(V)rm $(DEPENDENCY_LIST)
|
||||
|
||||
depend: .depend $(DEPENDENCY_LIST)
|
||||
$(V)perl $(BOOTPRINT_SRC_PATH)/../tools/dependcat.pl $(DEPENDENCY_LIST) > .depend
|
||||
$(V)rm $(DEPENDENCY_LIST)
|
||||
|
||||
.depend:
|
||||
touch .depend
|
||||
+$(MAKE) depend_custom_step
|
||||
+$(MAKE) depend
|
||||
|
||||
.PHONY : $(DEPENDENCY_LIST)
|
||||
|
||||
$(DEPENDENCY_LIST):
|
||||
@echo Generating dependencies for $(notdir $(@:.d=.cpp))
|
||||
@echo -n $(DEBUG_OBJ_DIR)/ >> $@
|
||||
$(V)$(CPP) $(PLATFORM_DEFINES) $(CPP_FLAGS_RELEASE) -MM $(addprefix -I,$(INCLUDE_DIRS)) $(@:.d=.cpp) >> $@
|
||||
|
||||
#######################################################
|
||||
# clean
|
||||
#######################################################
|
||||
|
||||
clean: cleandepend cleandebug
|
||||
|
||||
cleandepend:
|
||||
rm -f .depend
|
||||
|
||||
cleandebug:
|
||||
rm -Rf $(DEBUG_OBJ_DIR)
|
||||
rm -f $(DEBUG_FINAL_OUTPUT_DIR)/$(FINAL_OUTPUT_DEBUG)
|
||||
|
||||
|
||||
@@ -0,0 +1,663 @@
|
||||
#put the target "default" first in case make is invoked w/o specifying a target
|
||||
|
||||
default: all
|
||||
|
||||
ifeq ($(BULLSEYE_BUILD),)
|
||||
CPP = g++
|
||||
else
|
||||
CPP = /opt/app/bullseyecoverage/bin/g++
|
||||
BULLSEYE_LIB = /opt/app/bullseyecoverage/lib/libcov.a
|
||||
$(BULLSEYE_LIB)_dep:
|
||||
ls -l $(BULLSEYE_LIB)
|
||||
|
||||
COVFILE = /home/bdalton/text.cov
|
||||
|
||||
endif
|
||||
|
||||
BOOTPRINT_LIB_PATH =../../../../../../compile/$(PLATFORM)
|
||||
BOOTPRINT_SRC_PATH =../../../../../..
|
||||
SHARED_DEBUG_LIB_PATH =../../../../../../../dev/linux/debug/lib
|
||||
|
||||
#engine source tree defines
|
||||
|
||||
COLLISION_BASE_PATH =engine/shared/library/sharedCollision
|
||||
COLLISION_PATH =$(BOOTPRINT_SRC_PATH)/$(COLLISION_BASE_PATH)
|
||||
COLLISION_INCLUDE_PATH =$(COLLISION_PATH)/include/public
|
||||
COLLISION_BUILD_PATH =$(COLLISION_PATH)/build/$(PLATFORM)
|
||||
COLLISION_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedCollision.so
|
||||
$(COLLISION_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(COLLISION_BUILD_PATH) debug
|
||||
|
||||
COMMAND_PARSER_BASE_PATH =engine/shared/library/sharedCommandParser
|
||||
COMMAND_PARSER_PATH =$(BOOTPRINT_SRC_PATH)/$(COMMAND_PARSER_BASE_PATH)
|
||||
COMMAND_PARSER_INCLUDE_PATH =$(COMMAND_PARSER_PATH)/include/public
|
||||
COMMAND_PARSER_BUILD_PATH =$(COMMAND_PARSER_PATH)/build/$(PLATFORM)
|
||||
COMMAND_PARSER_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedCommandParser.so
|
||||
$(COMMAND_PARSER_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(COMMAND_PARSER_BUILD_PATH) debug
|
||||
|
||||
COMPRESSION_BASE_PATH =engine/shared/library/sharedCompression
|
||||
COMPRESSION_PATH =$(BOOTPRINT_SRC_PATH)/$(COMPRESSION_BASE_PATH)
|
||||
COMPRESSION_INCLUDE_PATH =$(COMPRESSION_PATH)/include/public
|
||||
COMPRESSION_BUILD_PATH =$(COMPRESSION_PATH)/build/$(PLATFORM)
|
||||
COMPRESSION_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedCompression.so
|
||||
$(COMPRESSION_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(COMPRESSION_BUILD_PATH) debug
|
||||
|
||||
DEBUG_BASE_PATH =engine/shared/library/sharedDebug
|
||||
DEBUG_PATH =$(BOOTPRINT_SRC_PATH)/$(DEBUG_BASE_PATH)
|
||||
DEBUG_INCLUDE_PATH =$(DEBUG_PATH)/include/public
|
||||
DEBUG_BUILD_PATH =$(DEBUG_PATH)/build/$(PLATFORM)
|
||||
DEBUG_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedDebug.so
|
||||
DEBUG_RELEASE_PROJECT =$(DEBUG_BUILD_PATH)/bugus_release
|
||||
$(DEBUG_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(DEBUG_BUILD_PATH) debug
|
||||
|
||||
FILE_BASE_PATH =engine/shared/library/sharedFile
|
||||
FILE_PATH =$(BOOTPRINT_SRC_PATH)/$(FILE_BASE_PATH)
|
||||
FILE_INCLUDE_PATH =$(FILE_PATH)/include/public
|
||||
FILE_BUILD_PATH =$(FILE_PATH)/build/$(PLATFORM)
|
||||
FILE_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedFile.so
|
||||
$(FILE_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(FILE_BUILD_PATH) debug
|
||||
|
||||
FOUNDATION_BASE_PATH =engine/shared/library/sharedFoundation
|
||||
FOUNDATION_PATH =$(BOOTPRINT_SRC_PATH)/$(FOUNDATION_BASE_PATH)
|
||||
FOUNDATION_INCLUDE_PATH =$(FOUNDATION_PATH)/include/public
|
||||
FOUNDATION_BUILD_PATH =$(FOUNDATION_PATH)/build/$(PLATFORM)
|
||||
FOUNDATION_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedFoundation.so
|
||||
$(FOUNDATION_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(FOUNDATION_BUILD_PATH) debug
|
||||
|
||||
FOUNDATION_TYPES_BASE_PATH =engine/shared/library/sharedFoundationTypes
|
||||
FOUNDATION_TYPES_PATH =$(BOOTPRINT_SRC_PATH)/$(FOUNDATION_TYPES_BASE_PATH)
|
||||
FOUNDATION_TYPES_INCLUDE_PATH =$(FOUNDATION_TYPES_PATH)/include/public
|
||||
|
||||
FRACTAL_BASE_PATH =engine/shared/library/sharedFractal
|
||||
FRACTAL_PATH =$(BOOTPRINT_SRC_PATH)/$(FRACTAL_BASE_PATH)
|
||||
FRACTAL_INCLUDE_PATH =$(FRACTAL_PATH)/include/public
|
||||
FRACTAL_BUILD_PATH =$(FRACTAL_PATH)/build/$(PLATFORM)
|
||||
FRACTAL_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedFractal.so
|
||||
$(FRACTAL_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(FRACTAL_BUILD_PATH) debug
|
||||
|
||||
IMAGE_BASE_PATH =engine/shared/library/sharedImage
|
||||
IMAGE_PATH =$(BOOTPRINT_SRC_PATH)/$(IMAGE_BASE_PATH)
|
||||
IMAGE_INCLUDE_PATH =$(IMAGE_PATH)/include/public
|
||||
IMAGE_BUILD_PATH =$(IMAGE_PATH)/build/$(PLATFORM)
|
||||
IMAGE_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedImage.so
|
||||
$(IMAGE_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(IMAGE_BUILD_PATH) debug
|
||||
|
||||
IOWIN_BASE_PATH =engine/shared/library/sharedIoWin
|
||||
IOWIN_PATH =$(BOOTPRINT_SRC_PATH)/$(IOWIN_BASE_PATH)
|
||||
IOWIN_INCLUDE_PATH =$(IOWIN_PATH)/include/public
|
||||
IOWIN_BUILD_PATH =$(IOWIN_PATH)/build/$(PLATFORM)
|
||||
IOWIN_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedIoWin.so
|
||||
$(IOWIN_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(IOWIN_BUILD_PATH) debug
|
||||
|
||||
LOG_BASE_PATH =engine/shared/library/sharedLog
|
||||
LOG_PATH =$(BOOTPRINT_SRC_PATH)/$(LOG_BASE_PATH)
|
||||
LOG_INCLUDE_PATH =$(LOG_PATH)/include/public
|
||||
LOG_BUILD_PATH =$(LOG_PATH)/build/$(PLATFORM)
|
||||
LOG_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedLog.so
|
||||
$(LOG_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(LOG_BUILD_PATH) debug
|
||||
|
||||
MATH_BASE_PATH =engine/shared/library/sharedMath
|
||||
MATH_PATH =$(BOOTPRINT_SRC_PATH)/$(MATH_BASE_PATH)
|
||||
MATH_INCLUDE_PATH =$(MATH_PATH)/include/public
|
||||
MATH_BUILD_PATH =$(MATH_PATH)/build/$(PLATFORM)
|
||||
MATH_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedMath.so
|
||||
$(MATH_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(MATH_BUILD_PATH) debug
|
||||
|
||||
MATH_ARCHIVE_BASE_PATH =engine/shared/library/sharedMathArchive
|
||||
MATH_ARCHIVE_PATH =$(BOOTPRINT_SRC_PATH)/$(MATH_ARCHIVE_BASE_PATH)
|
||||
MATH_ARCHIVE_INCLUDE_PATH =$(MATH_ARCHIVE_PATH)/include/public
|
||||
|
||||
MEMORY_MANAGER_BASE_PATH =engine/shared/library/sharedMemoryManager
|
||||
MEMORY_MANAGER_PATH =$(BOOTPRINT_SRC_PATH)/$(MEMORY_MANAGER_BASE_PATH)
|
||||
MEMORY_MANAGER_INCLUDE_PATH =$(MEMORY_MANAGER_PATH)/include/public
|
||||
MEMORY_MANAGER_BUILD_PATH =$(MEMORY_MANAGER_PATH)/build/$(PLATFORM)
|
||||
MEMORY_MANAGER_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedMemoryManager.so
|
||||
$(MEMORY_MANAGER_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(MEMORY_MANAGER_BUILD_PATH) debug
|
||||
|
||||
MESSAGE_DISPATCH_BASE_PATH =engine/shared/library/sharedMessageDispatch
|
||||
MESSAGE_DISPATCH_PATH =$(BOOTPRINT_SRC_PATH)/$(MESSAGE_DISPATCH_BASE_PATH)
|
||||
MESSAGE_DISPATCH_INCLUDE_PATH =$(MESSAGE_DISPATCH_PATH)/include/public
|
||||
MESSAGE_DISPATCH_BUILD_PATH =$(MESSAGE_DISPATCH_PATH)/build/$(PLATFORM)
|
||||
MESSAGE_DISPATCH_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedMessageDispatch.so
|
||||
$(MESSAGE_DISPATCH_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(MESSAGE_DISPATCH_BUILD_PATH) debug
|
||||
|
||||
NETWORK_MESSAGES_BASE_PATH =engine/shared/library/sharedNetworkMessages
|
||||
NETWORK_MESSAGES_PATH =$(BOOTPRINT_SRC_PATH)/$(NETWORK_MESSAGES_BASE_PATH)
|
||||
NETWORK_MESSAGES_INCLUDE_PATH =$(NETWORK_MESSAGES_PATH)/include/public
|
||||
NETWORK_MESSAGES_BUILD_PATH =$(NETWORK_MESSAGES_PATH)/build/$(PLATFORM)
|
||||
NETWORK_MESSAGES_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedNetworkMessages.so
|
||||
$(NETWORK_MESSAGES_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(NETWORK_MESSAGES_BUILD_PATH) debug
|
||||
|
||||
OBJECT_BASE_PATH =engine/shared/library/sharedObject
|
||||
OBJECT_PATH =$(BOOTPRINT_SRC_PATH)/$(OBJECT_BASE_PATH)
|
||||
OBJECT_INCLUDE_PATH =$(OBJECT_PATH)/include/public
|
||||
OBJECT_BUILD_PATH =$(OBJECT_PATH)/build/$(PLATFORM)
|
||||
OBJECT_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedObject.so
|
||||
$(OBJECT_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(OBJECT_BUILD_PATH) debug
|
||||
|
||||
SKILL_SYSTEM_BASE_PATH =engine/shared/library/sharedSkillSystem
|
||||
SKILL_SYSTEM_PATH =$(BOOTPRINT_SRC_PATH)/$(SKILL_SYSTEM_BASE_PATH)
|
||||
SKILL_SYSTEM_INCLUDE_PATH =$(SKILL_SYSTEM_PATH)/include/public
|
||||
SKILL_SYSTEM_BUILD_PATH =$(SKILL_SYSTEM_PATH)/build/$(PLATFORM)
|
||||
SKILL_SYSTEM_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedSkillSystem.so
|
||||
$(SKILL_SYSTEM_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SKILL_SYSTEM_BUILD_PATH) debug
|
||||
|
||||
PATHFINDING_BASE_PATH =engine/shared/library/sharedPathfinding
|
||||
PATHFINDING_PATH =$(BOOTPRINT_SRC_PATH)/$(PATHFINDING_BASE_PATH)
|
||||
PATHFINDING_INCLUDE_PATH =$(PATHFINDING_PATH)/include/public
|
||||
PATHFINDING_BUILD_PATH =$(PATHFINDING_PATH)/build/$(PLATFORM)
|
||||
PATHFINDING_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedPathfinding.so
|
||||
$(PATHFINDING_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(PATHFINDING_BUILD_PATH) debug
|
||||
|
||||
RANDOM_BASE_PATH =engine/shared/library/sharedRandom
|
||||
RANDOM_PATH =$(BOOTPRINT_SRC_PATH)/$(RANDOM_BASE_PATH)
|
||||
RANDOM_INCLUDE_PATH =$(RANDOM_PATH)/include/public
|
||||
RANDOM_BUILD_PATH =$(RANDOM_PATH)/build/$(PLATFORM)
|
||||
RANDOM_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedRandom.so
|
||||
$(RANDOM_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(RANDOM_BUILD_PATH) debug
|
||||
|
||||
REGEX_BASE_PATH =external/3rd/library/regex
|
||||
REGEX_PATH =$(BOOTPRINT_SRC_PATH)/$(REGEX_BASE_PATH)
|
||||
REGEX_INCLUDE_PATH =$(REGEX_PATH)
|
||||
REGEX_BUILD_PATH =$(REGEX_PATH)/libs/regex/build/gcc
|
||||
REGEX_DEBUG_LIB =$(REGEX_BUILD_PATH)/libboost_regex_debug.a
|
||||
|
||||
|
||||
SHARED_DATABASE_INTERFACE_BASE_PATH =engine/shared/library/sharedDatabaseInterface
|
||||
SHARED_DATABASE_INTERFACE_PATH =$(BOOTPRINT_SRC_PATH)/$(SHARED_DATABASE_INTERFACE_BASE_PATH)
|
||||
SHARED_DATABASE_INTERFACE_INCLUDE_PATH =$(SHARED_DATABASE_INTERFACE_PATH)/include/public
|
||||
SHARED_DATABASE_INTERFACE_BUILD_PATH =$(SHARED_DATABASE_INTERFACE_PATH)/build/$(PLATFORM)
|
||||
SHARED_DATABASE_INTERFACE_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedDatabaseInterface.so
|
||||
$(SHARED_DATABASE_INTERFACE_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SHARED_DATABASE_INTERFACE_BUILD_PATH) debug
|
||||
|
||||
|
||||
SHARED_REGEX_BASE_PATH =engine/shared/library/sharedRegex
|
||||
SHARED_REGEX_PATH =$(BOOTPRINT_SRC_PATH)/$(SHARED_REGEX_BASE_PATH)
|
||||
SHARED_REGEX_INCLUDE_PATH =$(SHARED_REGEX_PATH)/include/public
|
||||
SHARED_REGEX_BUILD_PATH =$(SHARED_REGEX_PATH)/build/$(PLATFORM)
|
||||
SHARED_REGEX_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedRegex.so
|
||||
$(SHARED_REGEX_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SHARED_REGEX_BUILD_PATH) debug
|
||||
|
||||
SWITCHER_BASE_PATH =engine/shared/library/sharedSwitcher
|
||||
SWITCHER_PATH =$(BOOTPRINT_SRC_PATH)/$(SWITCHER_BASE_PATH)
|
||||
SWITCHER_INCLUDE_PATH =$(SWITCHER_PATH)/include/public
|
||||
SWITCHER_BUILD_PATH =$(SWITCHER_PATH)/build/$(PLATFORM)
|
||||
SWITCHER_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedSwitcher.so
|
||||
|
||||
SYNCHRONIZATION_BASE_PATH =engine/shared/library/sharedSynchronization
|
||||
SYNCHRONIZATION_PATH =$(BOOTPRINT_SRC_PATH)/$(SYNCHRONIZATION_BASE_PATH)
|
||||
SYNCHRONIZATION_INCLUDE_PATH =$(SYNCHRONIZATION_PATH)/include/public
|
||||
SYNCHRONIZATION_BUILD_PATH =$(SYNCHRONIZATION_PATH)/build/$(PLATFORM)
|
||||
SYNCHRONIZATION_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedSynchronization.so
|
||||
$(SYNCHRONIZATION_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SYNCHRONIZATION_BUILD_PATH) debug
|
||||
|
||||
TEMPLATE_BASE_PATH =engine/shared/library/sharedTemplate
|
||||
TEMPLATE_PATH =$(BOOTPRINT_SRC_PATH)/$(TEMPLATE_BASE_PATH)
|
||||
TEMPLATE_INCLUDE_PATH =$(TEMPLATE_PATH)/include/public
|
||||
TEMPLATE_BUILD_PATH =$(TEMPLATE_PATH)/build/$(PLATFORM)
|
||||
TEMPLATE_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedTemplate.so
|
||||
$(TEMPLATE_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(TEMPLATE_BUILD_PATH) debug
|
||||
|
||||
TEMPLATE_DEFINITION_BASE_PATH =engine/shared/library/sharedTemplateDefinition
|
||||
TEMPLATE_DEFINITION_PATH =$(BOOTPRINT_SRC_PATH)/$(TEMPLATE_DEFINITION_BASE_PATH)
|
||||
TEMPLATE_DEFINITION_INCLUDE_PATH =$(TEMPLATE_DEFINITION_PATH)/include/public
|
||||
TEMPLATE_DEFINITION_BUILD_PATH =$(TEMPLATE_DEFINITION_PATH)/build/$(PLATFORM)
|
||||
TEMPLATE_DEFINITION_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedTemplateDefinition.so
|
||||
$(TEMPLATE_DEFINITION_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(TEMPLATE_DEFINITION_BUILD_PATH) debug
|
||||
|
||||
TERRAIN_BASE_PATH =engine/shared/library/sharedTerrain
|
||||
TERRAIN_PATH =$(BOOTPRINT_SRC_PATH)/$(TERRAIN_BASE_PATH)
|
||||
TERRAIN_INCLUDE_PATH =$(TERRAIN_PATH)/include/public
|
||||
TERRAIN_BUILD_PATH =$(TERRAIN_PATH)/build/$(PLATFORM)
|
||||
TERRAIN_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedTerrain.so
|
||||
$(TERRAIN_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(TERRAIN_BUILD_PATH) debug
|
||||
|
||||
THREAD_BASE_PATH =engine/shared/library/sharedThread
|
||||
THREAD_PATH =$(BOOTPRINT_SRC_PATH)/$(THREAD_BASE_PATH)
|
||||
THREAD_INCLUDE_PATH =$(THREAD_PATH)/include/public
|
||||
THREAD_BUILD_PATH =$(THREAD_PATH)/build/$(PLATFORM)
|
||||
THREAD_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedThread.so
|
||||
$(THREAD_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(THREAD_BUILD_PATH) debug
|
||||
|
||||
UTILITY_BASE_PATH =engine/shared/library/sharedUtility
|
||||
UTILITY_PATH =$(BOOTPRINT_SRC_PATH)/$(UTILITY_BASE_PATH)
|
||||
UTILITY_INCLUDE_PATH =$(UTILITY_PATH)/include/public
|
||||
UTILITY_BUILD_PATH =$(UTILITY_PATH)/build/$(PLATFORM)
|
||||
UTILITY_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedUtility.so
|
||||
$(UTILITY_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(UTILITY_BUILD_PATH) debug
|
||||
|
||||
ORACLE_CLIENT_PATH =$(ORACLE_HOME)
|
||||
ORACLE_CLIENT_LIB =$(ORACLE_CLIENT_PATH)/lib/libclntsh.so
|
||||
$(ORACLE_CLIENT_LIB)_dep:
|
||||
@[ -f $(ORACLE_CLIENT_LIB) ] || echo " [$(ORACLE_CLIENT_LIB)] is missing!"
|
||||
$(V)cd $(SHARED_DEBUG_LIB_PATH) && ln -sf $(ORACLE_CLIENT_LIB)
|
||||
|
||||
LIBXML_INCLUDE_PATH =/usr/include/libxml2
|
||||
LIBXML_LIB =/usr/lib/libxml2.so
|
||||
$(LIBXML_LIB)_dep:
|
||||
@[ -f $(LIBXML_LIB) ] || echo " [$(LIBXML_LIB)] is missing!"
|
||||
$(V)cd $(SHARED_DEBUG_LIB_PATH) && ln -sf $(LIBXML_LIB)
|
||||
|
||||
SERVER_GAME_BASE_PATH =engine/server/library/serverGame
|
||||
SERVER_GAME_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_GAME_BASE_PATH)
|
||||
SERVER_GAME_INCLUDE_PATH =$(SERVER_GAME_PATH)/include/public
|
||||
SERVER_GAME_BUILD_PATH =$(SERVER_GAME_PATH)/build/$(PLATFORM)
|
||||
SERVER_GAME_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverGame.so
|
||||
$(SERVER_GAME_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SERVER_GAME_BUILD_PATH) debug
|
||||
|
||||
SERVER_KEYSHARE_BASE_PATH =engine/server/library/serverKeyShare
|
||||
SERVER_KEYSHARE_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_KEYSHARE_BASE_PATH)
|
||||
SERVER_KEYSHARE_INCLUDE_PATH =$(SERVER_KEYSHARE_PATH)/include/public
|
||||
SERVER_KEYSHARE_BUILD_PATH =$(SERVER_KEYSHARE_PATH)/build/$(PLATFORM)
|
||||
SERVER_KEYSHARE_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverKeyShare.so
|
||||
$(SERVER_KEYSHARE_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SERVER_KEYSHARE_BUILD_PATH) debug
|
||||
|
||||
SERVER_METRICS_BASE_PATH =engine/server/library/serverMetrics
|
||||
SERVER_METRICS_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_METRICS_BASE_PATH)
|
||||
SERVER_METRICS_INCLUDE_PATH =$(SERVER_METRICS_PATH)/include/public
|
||||
SERVER_METRICS_BUILD_PATH =$(SERVER_METRICS_PATH)/build/$(PLATFORM)
|
||||
SERVER_METRICS_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverMetrics.so
|
||||
$(SERVER_METRICS_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SERVER_METRICS_BUILD_PATH) debug
|
||||
|
||||
SERVER_NETWORK_MESSAGES_BASE_PATH =engine/server/library/serverNetworkMessages
|
||||
SERVER_NETWORK_MESSAGES_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_NETWORK_MESSAGES_BASE_PATH)
|
||||
SERVER_NETWORK_MESSAGES_INCLUDE_PATH =$(SERVER_NETWORK_MESSAGES_PATH)/include/public
|
||||
SERVER_NETWORK_MESSAGES_BUILD_PATH =$(SERVER_NETWORK_MESSAGES_PATH)/build/$(PLATFORM)
|
||||
SERVER_NETWORK_MESSAGES_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverNetworkMessages.so
|
||||
$(SERVER_NETWORK_MESSAGES_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SERVER_NETWORK_MESSAGES_BUILD_PATH) debug
|
||||
|
||||
SERVER_PATHFINDING_BASE_PATH =engine/server/library/serverPathfinding
|
||||
SERVER_PATHFINDING_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_PATHFINDING_BASE_PATH)
|
||||
SERVER_PATHFINDING_INCLUDE_PATH =$(SERVER_PATHFINDING_PATH)/include/public
|
||||
SERVER_PATHFINDING_BUILD_PATH =$(SERVER_PATHFINDING_PATH)/build/$(PLATFORM)
|
||||
SERVER_PATHFINDING_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverPathfinding.so
|
||||
$(SERVER_PATHFINDING_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SERVER_PATHFINDING_BUILD_PATH) debug
|
||||
|
||||
SERVER_SCRIPT_BASE_PATH =engine/server/library/serverScript
|
||||
SERVER_SCRIPT_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_SCRIPT_BASE_PATH)
|
||||
SERVER_SCRIPT_INCLUDE_PATH =$(SERVER_SCRIPT_PATH)/include/public
|
||||
SERVER_SCRIPT_BUILD_PATH =$(SERVER_SCRIPT_PATH)/build/$(PLATFORM)
|
||||
SERVER_SCRIPT_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverScript.so
|
||||
$(SERVER_SCRIPT_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SERVER_SCRIPT_BUILD_PATH) debug
|
||||
|
||||
SERVER_UTILITY_BASE_PATH =engine/server/library/serverUtility
|
||||
SERVER_UTILITY_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_UTILITY_BASE_PATH)
|
||||
SERVER_UTILITY_INCLUDE_PATH =$(SERVER_UTILITY_PATH)/include/public
|
||||
SERVER_UTILITY_BUILD_PATH =$(SERVER_UTILITY_PATH)/build/$(PLATFORM)
|
||||
SERVER_UTILITY_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverUtility.so
|
||||
$(SERVER_UTILITY_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SERVER_UTILITY_BUILD_PATH) debug
|
||||
|
||||
SERVER_DATABASE_BASE_PATH =engine/server/library/serverDatabase
|
||||
SERVER_DATABASE_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_DATABASE_BASE_PATH)
|
||||
SERVER_DATABASE_INCLUDE_PATH =$(SERVER_DATABASE_PATH)/include/public
|
||||
SERVER_DATABASE_BUILD_PATH =$(SERVER_DATABASE_PATH)/build/$(PLATFORM)
|
||||
SERVER_DATABASE_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverDatabase.so
|
||||
$(SERVER_DATABASE_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SERVER_DATABASE_BUILD_PATH) debug
|
||||
|
||||
CLIENT_REMOTE_DEBUG_BASE_PATH =engine/client/library/clientRemoteDebug
|
||||
CLIENT_REMOTE_DEBUG_PATH =$(BOOTPRINT_SRC_PATH)/$(CLIENT_REMOTE_DEBUG_BASE_PATH)
|
||||
CLIENT_REMOTE_DEBUG_INCLUDE_PATH =$(CLIENT_REMOTE_DEBUG_PATH)/include/public
|
||||
CLIENT_REMOTE_DEBUG_BUILD_PATH =$(CLIENT_REMOTE_DEBUG_PATH)/build/$(PLATFORM)
|
||||
CLIENT_REMOTE_DEBUG_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH )/debug/libclientRemoteDebug.so
|
||||
|
||||
|
||||
# TODO: These really belong in game's defs.mak
|
||||
|
||||
SWG_SERVER_NETWORK_MESSAGES_BASE_PATH =game/server/library/swgServerNetworkMessages
|
||||
SWG_SERVER_NETWORK_MESSAGES_PATH =$(BOOTPRINT_SRC_PATH)/$(SWG_SERVER_NETWORK_MESSAGES_BASE_PATH)
|
||||
SWG_SERVER_NETWORK_MESSAGES_INCLUDE_PATH =$(SWG_SERVER_NETWORK_MESSAGES_PATH)/include/public
|
||||
SWG_SERVER_NETWORK_MESSAGES_BUILD_PATH =$(SWG_SERVER_NETWORK_MESSAGES_PATH)/build/$(PLATFORM)
|
||||
SWG_SERVER_NETWORK_MESSAGES_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libswgServerNetworkMessages.so
|
||||
$(SWG_SERVER_NETWORK_MESSAGES_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SWG_SERVER_NETWORK_MESSAGES_BUILD_PATH) debug
|
||||
|
||||
SWG_SHARED_NETWORK_MESSAGES_BASE_PATH =game/shared/library/swgSharedNetworkMessages
|
||||
SWG_SHARED_NETWORK_MESSAGES_PATH =$(BOOTPRINT_SRC_PATH)/$(SWG_SHARED_NETWORK_MESSAGES_BASE_PATH)
|
||||
SWG_SHARED_NETWORK_MESSAGES_INCLUDE_PATH =$(SWG_SHARED_NETWORK_MESSAGES_PATH)/include/public
|
||||
SWG_SHARED_NETWORK_MESSAGES_BUILD_PATH =$(SWG_SHARED_NETWORK_MESSAGES_PATH)/build/$(PLATFORM)
|
||||
SWG_SHARED_NETWORK_MESSAGES_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libswgSharedNetworkMessages.so
|
||||
$(SWG_SHARED_NETWORK_MESSAGES_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SWG_SHARED_NETWORK_MESSAGES_BUILD_PATH) debug
|
||||
|
||||
SWG_SHARED_UTILITY_BASE_PATH =game/shared/library/swgSharedUtility
|
||||
SWG_SHARED_UTILITY_PATH =$(BOOTPRINT_SRC_PATH)/$(SWG_SHARED_UTILITY_BASE_PATH)
|
||||
SWG_SHARED_UTILITY_INCLUDE_PATH =$(SWG_SHARED_UTILITY_PATH)/include/public
|
||||
SWG_SHARED_UTILITY_BUILD_PATH =$(SWG_SHARED_UTILITY_PATH)/build/$(PLATFORM)
|
||||
SWG_SHARED_UTILITY_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libswgSharedUtility.so
|
||||
$(SWG_SHARED_UTILITY_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SWG_SHARED_UTILITY_BUILD_PATH) debug
|
||||
|
||||
|
||||
#external source tree defines
|
||||
|
||||
STL_BASE_PATH =external/3rd/library/stlport453
|
||||
STL_PATH =$(BOOTPRINT_SRC_PATH)/$(STL_BASE_PATH)
|
||||
STL_INCLUDE_PATH = $(STL_PATH)/stlport
|
||||
STL_LIB = $(STL_PATH)/lib/libstlport_gcc.a
|
||||
$(STL_LIB)_dep:
|
||||
make -C $(STL_PATH)/src -f gcc-linux.mak all_static
|
||||
|
||||
ZLIB_BASE_PATH =external/3rd/library/zlib
|
||||
ZLIB_PATH =$(BOOTPRINT_SRC_PATH)/$(ZLIB_BASE_PATH)
|
||||
ZLIB_INCLUDE_PATH = $(ZLIB_PATH)/include
|
||||
ZLIB_LIB = $(ZLIB_PATH)/lib/linux/libz.a
|
||||
$(ZLIB_LIB)_dep:
|
||||
@[ -f $(ZLIB_LIB) ] || echo " [$(ZLIB_LIB)] is missing!"
|
||||
|
||||
BOOST_BASE_PATH = external/3rd/library/boost
|
||||
BOOST_INCLUDE_PATH = $(BOOTPRINT_SRC_PATH)/$(BOOST_BASE_PATH)
|
||||
|
||||
PCRE_BASE_PATH =external/3rd/library/pcre/4.1/linux
|
||||
PCRE_PATH =$(BOOTPRINT_SRC_PATH)/$(PCRE_BASE_PATH)
|
||||
PCRE_INCLUDE_PATH =$(PCRE_PATH)/include
|
||||
PCRE_BUILD_PATH =$(PCRE_PATH)/lib
|
||||
PCRE_DEBUG_LIB =$(PCRE_BUILD_PATH)/libpcre.a
|
||||
$(PCRE_DEBUG_LIB)_dep:
|
||||
@[ -f $(PCRE_DEBUG_LIB) ] || @echo " [$(PCRE_DEBUG_LIB)] is missing!"
|
||||
|
||||
|
||||
SHARED_GAME_BASE_PATH =engine/shared/library/sharedGame
|
||||
SHARED_GAME_PATH =$(BOOTPRINT_SRC_PATH)/$(SHARED_GAME_BASE_PATH)
|
||||
SHARED_GAME_INCLUDE_PATH = $(SHARED_GAME_PATH)/include/public
|
||||
SHARED_GAME_BUILD_PATH = $(SHARED_GAME_PATH)/build/$(PLATFORM)
|
||||
SHARED_GAME_DEBUG_LIB = $(SHARED_DEBUG_LIB_PATH)/libsharedGame.so
|
||||
$(SHARED_GAME_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SHARED_GAME_BUILD_PATH) debug
|
||||
|
||||
SHARED_NETWORK_BASE_PATH =engine/shared/library/sharedNetwork
|
||||
SHARED_NETWORK_PATH =$(BOOTPRINT_SRC_PATH)/$(SHARED_NETWORK_BASE_PATH)
|
||||
SHARED_NETWORK_INCLUDE_PATH = $(SHARED_NETWORK_PATH)/include/public
|
||||
SHARED_NETWORK_BUILD_PATH = $(SHARED_NETWORK_PATH)/build/$(PLATFORM)
|
||||
SHARED_NETWORK_DEBUG_LIB = $(SHARED_DEBUG_LIB_PATH)/libsharedNetwork.so
|
||||
$(SHARED_NETWORK_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SHARED_NETWORK_BUILD_PATH) debug
|
||||
|
||||
SHARED_XML_BASE_PATH =engine/shared/library/sharedXml
|
||||
SHARED_XML_PATH =$(BOOTPRINT_SRC_PATH)/$(SHARED_XML_BASE_PATH)
|
||||
SHARED_XML_INCLUDE_PATH = $(SHARED_XML_PATH)/include/public
|
||||
SHARED_XML_BUILD_PATH = $(SHARED_XML_PATH)/build/$(PLATFORM)
|
||||
SHARED_XML_DEBUG_LIB = $(SHARED_DEBUG_LIB_PATH)/libsharedXml.so
|
||||
$(SHARED_XML_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(SHARED_XML_BUILD_PATH) debug
|
||||
|
||||
SESSIONAPI_BASE_PATH =external/3rd/library/platform
|
||||
SESSIONAPI_PATH =$(BOOTPRINT_SRC_PATH)/$(SESSIONAPI_BASE_PATH)
|
||||
SESSIONAPI_INCLUDE_PATH = $(SESSIONAPI_PATH)/projects
|
||||
|
||||
UDPLIBRARY_BASE_PATH =external/3rd/library/udplibrary
|
||||
UDPLIBRARY_PATH =$(BOOTPRINT_SRC_PATH)/$(UDPLIBRARY_BASE_PATH)
|
||||
UDPLIBRARY_INCLUDE_PATH = $(UDPLIBRARY_PATH)
|
||||
UDPLIBRARY_BUILD_PATH = $(UDPLIBRARY_PATH)
|
||||
UDPLIBRARY_DEBUG_LIB = $(UDPLIBRARY_PATH)/output/debug/libudplibrary.a
|
||||
$(UDPLIBRARY_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(UDPLIBRARY_BUILD_PATH) debug
|
||||
+$(V)make -C $(UDPLIBRARY_BUILD_PATH) release
|
||||
|
||||
ARCHIVE_BASE_PATH =external/ours/library/archive
|
||||
ARCHIVE_PATH =$(BOOTPRINT_SRC_PATH)/$(ARCHIVE_BASE_PATH)
|
||||
ARCHIVE_INCLUDE_PATH =$(ARCHIVE_PATH)/include
|
||||
ARCHIVE_BUILD_PATH =$(ARCHIVE_PATH)/build/$(PLATFORM)
|
||||
#ARCHIVE_DEBUG_LIB =$(BOOTPRINT_LIB_PATH)/archive/debug/libourArchive.so
|
||||
ARCHIVE_DEBUG_LIB =$(BOOTPRINT_LIB_PATH)/archive/debug/libarchive.so
|
||||
$(ARCHIVE_DEBUG_LIB)_dep:
|
||||
+$(V)make -j 1 -C $(ARCHIVE_BUILD_PATH) debug
|
||||
|
||||
FILE_INTERFACE_BASE_PATH =external/ours/library/fileInterface
|
||||
FILE_INTERFACE_PATH =$(BOOTPRINT_SRC_PATH)/$(FILE_INTERFACE_BASE_PATH)
|
||||
FILE_INTERFACE_INCLUDE_PATH =$(FILE_INTERFACE_PATH)/include/public
|
||||
FILE_INTERFACE_BUILD_PATH =$(FILE_INTERFACE_PATH)/build/$(PLATFORM)
|
||||
FILE_INTERFACE_DEBUG_LIB =$(FILE_INTERFACE_BUILD_PATH)/output/debug/libfileInterface.so
|
||||
$(FILE_INTERFACE_DEBUG_LIB)_dep:
|
||||
+$(V)make -j 1 -C $(FILE_INTERFACE_BUILD_PATH) debug
|
||||
|
||||
UNICODE_ARCHIVE_BASE_PATH =external/ours/library/unicodeArchive
|
||||
UNICODE_ARCHIVE_PATH =$(BOOTPRINT_SRC_PATH)/$(UNICODE_ARCHIVE_BASE_PATH)
|
||||
UNICODE_ARCHIVE_INCLUDE_PATH =$(UNICODE_ARCHIVE_PATH)/include/public
|
||||
UNICODE_ARCHIVE_BUILD_PATH =$(UNICODE_ARCHIVE_PATH)/build/$(PLATFORM)
|
||||
UNICODE_ARCHIVE_DEBUG_LIB =$(UNICODE_ARCHIVE_BUILD_PATH)/output/debug/libunicodeArchive.so
|
||||
$(UNICODE_ARCHIVE_DEBUG_LIB)_dep:
|
||||
+$(V)make -j 1 -C $(UNICODE_ARCHIVE_BUILD_PATH) debug
|
||||
|
||||
CRYPTO_BASE_PATH =external/ours/library/crypto
|
||||
CRYPTO_PATH =$(BOOTPRINT_SRC_PATH)/$(CRYPTO_BASE_PATH)
|
||||
CRYPTO_BUILD_PATH =$(CRYPTO_PATH)/build/$(PLATFORM)
|
||||
CRYPTO_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libcrypto.so
|
||||
$(CRYPTO_DEBUG_LIB)_dep:
|
||||
+$(V)make -j 1 -C $(CRYPTO_BUILD_PATH) debug
|
||||
|
||||
#./swg/current/src/external/ours/library/unicode/compile/linux/Debug/libunicode.a
|
||||
|
||||
UNICODE_BASE_PATH =external/ours/library/unicode
|
||||
UNICODE_PATH =$(BOOTPRINT_SRC_PATH)/$(UNICODE_BASE_PATH)
|
||||
UNICODE_INCLUDE_PATH =$(UNICODE_PATH)/include
|
||||
UNICODE_BUILD_PATH =$(UNICODE_PATH)/build/$(PLATFORM)
|
||||
UNICODE_DEBUG_LIB =$(UNICODE_PATH)/compile/linux/Debug/libunicode.so
|
||||
$(UNICODE_DEBUG_LIB)_dep:
|
||||
+$(V)make -j 1 -C $(UNICODE_BUILD_PATH) debug
|
||||
|
||||
LOCALIZATION_BASE_PATH =external/ours/library/localization
|
||||
LOCALIZATION_PATH =$(BOOTPRINT_SRC_PATH)/$(LOCALIZATION_BASE_PATH)
|
||||
LOCALIZATION_INCLUDE_PATH =$(LOCALIZATION_PATH)/include
|
||||
LOCALIZATION_BUILD_PATH =$(LOCALIZATION_PATH)/build/$(PLATFORM)
|
||||
LOCALIZATION_DEBUG_LIB =$(LOCALIZATION_PATH)/compile/linux/Debug/liblocalization.so
|
||||
$(LOCALIZATION_DEBUG_LIB)_dep:
|
||||
+$(V)make -j 1 -C $(LOCALIZATION_BUILD_PATH) debug
|
||||
|
||||
LOCALIZATION_ARCHIVE_BASE_PATH =external/ours/library/localizationArchive
|
||||
LOCALIZATION_ARCHIVE_PATH =$(BOOTPRINT_SRC_PATH)/$(LOCALIZATION_ARCHIVE_BASE_PATH)
|
||||
LOCALIZATION_ARCHIVE_INCLUDE_PATH =$(LOCALIZATION_ARCHIVE_PATH)/include/public
|
||||
LOCALIZATION_ARCHIVE_BUILD_PATH =$(LOCALIZATION_ARCHIVE_PATH)/build/$(PLATFORM)
|
||||
LOCALIZATION_ARCHIVE_DEBUG_LIB =$(LOCALIZATION_ARCHIVE_PATH)/compile/linux/Debug/liblocalizationArchive.so
|
||||
$(LOCALIZATION_ARCHIVE_DEBUG_LIB)_dep:
|
||||
+$(V)make -j 1 -C $(LOCALIZATION_ARCHIVE_BUILD_PATH) debug
|
||||
|
||||
SESSIONAPI_BASE_PATH =external/3rd/library/platform
|
||||
SESSIONAPI_PATH =$(BOOTPRINT_SRC_PATH)/$(SESSIONAPI_BASE_PATH)
|
||||
SESSIONAPI_INCLUDE_PATH =$(SESSIONAPI_PATH)/projects
|
||||
LOGINAPI_DEBUG_LIB =$(SESSIONAPI_PATH)/lib/debug/libLoginAPI.a
|
||||
COMMONAPI_DEBUG_LIB =$(SESSIONAPI_PATH)/lib/debug/libCommonAPI.a
|
||||
|
||||
$(LOGINAPI_DEBUG_LIB)_dep:
|
||||
make -C $(SESSIONAPI_PATH)/projects/Session/LoginAPI debug
|
||||
|
||||
$(COMMONAPI_DEBUG_LIB)_dep:
|
||||
make -C $(SESSIONAPI_PATH)/projects/Session/CommonAPI debug
|
||||
|
||||
|
||||
MONAPI_BASE_PATH =external/3rd/library/platform/MonAPI2
|
||||
MONAPI_BUILD_PATH =$(BOOTPRINT_SRC_PATH)/$(MONAPI_BASE_PATH)
|
||||
MONAPI_DEBUG_PATH =$(BOOTPRINT_SRC_PATH)/$(MONAPI_BASE_PATH)/lib
|
||||
MONAPI_INCLUDE_PATH =$(BOOTPRINT_SRC_PATH)/external/3rd/library/platform
|
||||
MONAPI_DEBUG_LIB =$(MONAPI_DEBUG_PATH)/libmonapi.a
|
||||
$(MONAPI_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(MONAPI_BUILD_PATH) -f Makefile.oldBuildSystem debug
|
||||
|
||||
|
||||
CHATAPI_BASE_PATH =external/3rd/library/soePlatform/ChatAPI2/ChatAPI
|
||||
CHATAPI_BUILD_PATH =$(BOOTPRINT_SRC_PATH)/$(CHATAPI_BASE_PATH)/projects/Chat/ChatMono
|
||||
CHATAPI_DEBUG_PATH =$(BOOTPRINT_SRC_PATH)/$(CHATAPI_BASE_PATH)/lib/debug
|
||||
CHATAPI_RELEASE_PATH =$(BOOTPRINT_SRC_PATH)/$(CHATAPI_BASE_PATH)/lib/release
|
||||
CHATAPI_INCLUDE_PATH_ONE =$(BOOTPRINT_SRC_PATH)/$(CHATAPI_BASE_PATH)/utils
|
||||
CHATAPI_INCLUDE_PATH_TWO =$(BOOTPRINT_SRC_PATH)/$(CHATAPI_BASE_PATH)/projects/Chat
|
||||
CHATAPI_DEBUG_LIB =$(CHATAPI_DEBUG_PATH)/libChatAPI.a
|
||||
$(CHATAPI_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(CHATAPI_BUILD_PATH) -f Makefile debug
|
||||
|
||||
CSASSIST_BASE_PATH =external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi
|
||||
CSASSIST_BUILD_PATH =$(BOOTPRINT_SRC_PATH)/$(CSASSIST_BASE_PATH)
|
||||
CSASSIST_DEBUG_PATH =$(BOOTPRINT_SRC_PATH)/$(CSASSIST_BASE_PATH)/debug
|
||||
CSASSIST_RELEASE_PATH =$(BOOTPRINT_SRC_PATH)/$(CSASSIST_BASE_PATH)/release
|
||||
CSASSIST_INCLUDE_PATH =$(BOOTPRINT_SRC_PATH)/$(CSASSIST_BASE_PATH)
|
||||
CSASSIST_DEBUG_LIB =$(CSASSIST_DEBUG_PATH)/libCSAssistgameapi.a
|
||||
$(CSASSIST_DEBUG_LIB)_dep:
|
||||
+$(V)make -C $(CSASSIST_BUILD_PATH) debug
|
||||
|
||||
|
||||
LIBBASE_BASE_PATH =external/3rd/library/platform
|
||||
LIBBASE_BUILD_PATH =$(BOOTPRINT_SRC_PATH)/$(LIBBASE_BASE_PATH)/utils/Base/linux
|
||||
LIBBASE_DEBUG_PATH =$(BOOTPRINT_SRC_PATH)/$(LIBBASE_BASE_PATH)/lib/debug
|
||||
LIBBASE_RELEASE_PATH =$(BOOTPRINT_SRC_PATH)/$(LIBBASE_BASE_PATH)/lib/release
|
||||
LIBBASE_INCLUDE_PATH_1 =$(BOOTPRINT_SRC_PATH)/$(LIBBASE_BASE_PATH)/Base/linux
|
||||
LIBBASE_INCLUDE_PATH_2 =$(BOOTPRINT_SRC_PATH)/$(LIBBASE_BASE_PATH)/Base
|
||||
LIBBASE_DEBUG_LIB =$(LIBBASE_DEBUG_PATH)/libBase_MT.a
|
||||
$(LIBBASE_DEBUG_LIB)_dep:
|
||||
+$(V)$(MAKE) -C $(LIBBASE_BUILD_PATH) debug_mt
|
||||
|
||||
|
||||
#######################################################################
|
||||
# Common library variables
|
||||
|
||||
COMMON_ENGINE_LIBRARY_INCLUDES = \
|
||||
$(DEBUG_INCLUDE_PATH) \
|
||||
$(FOUNDATION_INCLUDE_PATH) \
|
||||
$(FOUNDATION_TYPES_INCLUDE_PATH) \
|
||||
$(MEMORY_MANAGER_INCLUDE_PATH) \
|
||||
$(OBJECT_INCLUDE_PATH) \
|
||||
$(ARCHIVE_INCLUDE_PATH) \
|
||||
$(LOCALIZATION_INCLUDE_PATH) \
|
||||
$(LOCALIZATION_ARCHIVE_INCLUDE_PATH) \
|
||||
$(UNICODE_INCLUDE_PATH) \
|
||||
$(UNICODE_ARCHIVE_INCLUDE_PATH) \
|
||||
$(STL_INCLUDE_PATH) \
|
||||
$(ZLIB_INCLUDE_PATH) \
|
||||
$(SHARED_GAME_INCLUDE_PATH) \
|
||||
$(SHARED_XML_INCLUDE_PATH)
|
||||
|
||||
|
||||
#######################################################################
|
||||
# Common application variables
|
||||
|
||||
COMMON_ENGINE_INCLUDES = \
|
||||
$(COMPRESSION_INCLUDE_PATH) \
|
||||
$(LIBBASE_INCLUDE_PATH_1) \
|
||||
$(LIBBASE_INCLUDE_PATH_2) \
|
||||
$(CRYPTO_PATH) \
|
||||
$(DEBUG_INCLUDE_PATH) \
|
||||
$(FILE_INCLUDE_PATH) \
|
||||
$(FILE_INTERFACE_INCLUDE_PATH) \
|
||||
$(FOUNDATION_INCLUDE_PATH) \
|
||||
$(FOUNDATION_TYPES_INCLUDE_PATH) \
|
||||
$(ARCHIVE_INCLUDE_PATH) \
|
||||
$(IMAGE_INCLUDE_PATH) \
|
||||
$(MATH_INCLUDE_PATH) \
|
||||
$(MATH_ARCHIVE_INCLUDE_PATH) \
|
||||
$(OBJECT_INCLUDE_PATH) \
|
||||
$(UNICODE_INCLUDE_PATH) \
|
||||
$(UNICODE_ARCHIVE_INCLUDE_PATH) \
|
||||
$(MEMORY_MANAGER_INCLUDE_PATH) \
|
||||
$(MESSAGE_DISPATCH_INCLUDE_PATH) \
|
||||
$(NETWORK_MESSAGES_INCLUDE_PATH) \
|
||||
$(OBJECT_INCLUDE_PATH) \
|
||||
$(SKILL_SYSTEM_INCLUDE_PATH) \
|
||||
$(PATHFINDING_INCLUDE_PATH) \
|
||||
$(RANDOM_INCLUDE_PATH) \
|
||||
$(SYNCHRONIZATION_INCLUDE_PATH) \
|
||||
$(THREAD_INCLUDE_PATH) \
|
||||
$(UTILITY_INCLUDE_PATH) \
|
||||
$(SERVER_KEYSHARE_INCLUDE_PATH) \
|
||||
$(SERVER_METRICS_INCLUDE_PATH) \
|
||||
$(SERVER_NETWORK_MESSAGES_INCLUDE_PATH) \
|
||||
$(SERVER_UTILITY_INCLUDE_PATH) \
|
||||
$(SHARED_NETWORK_INCLUDE_PATH) \
|
||||
$(SHARED_XML_INCLUDE_PATH) \
|
||||
$(LIBXML_INCLUDE_PATH) \
|
||||
$(STL_INCLUDE_PATH) \
|
||||
$(ZLIB_INCLUDE_PATH) \
|
||||
$(LOCALIZATION_INCLUDE_PATH) \
|
||||
$(LOCALIZATION_ARCHIVE_INCLUDE_PATH) \
|
||||
$(LOG_INCLUDE_PATH) \
|
||||
../../../../../../external/ours/library/singleton/include
|
||||
|
||||
|
||||
ifeq ($(BULLSEYE_BUILD),)
|
||||
COMMON_ENGINE_DEBUG_LIBS = \
|
||||
$(UDPLIBRARY_DEBUG_LIB) \
|
||||
$(COMMONAPI_DEBUG_LIB) \
|
||||
$(LOGINAPI_DEBUG_LIB) \
|
||||
$(LIBBASE_DEBUG_LIB)
|
||||
else
|
||||
COMMON_ENGINE_DEBUG_LIBS = \
|
||||
$(UDPLIBRARY_DEBUG_LIB) \
|
||||
$(COMMONAPI_DEBUG_LIB) \
|
||||
$(LOGINAPI_DEBUG_LIB) \
|
||||
$(LIBBASE_DEBUG_LIB) \
|
||||
$(BULLSEYE_LIB)
|
||||
endif
|
||||
|
||||
COMMON_ENGINE_SHARED_DEBUG_LIBS= \
|
||||
$(COLLISION_DEBUG_LIB) \
|
||||
$(OBJECT_DEBUG_LIB) \
|
||||
$(TERRAIN_DEBUG_LIB) \
|
||||
$(ARCHIVE_DEBUG_LIB) \
|
||||
$(CRYPTO_DEBUG_LIB) \
|
||||
$(COMPRESSION_DEBUG_LIB) \
|
||||
$(DEBUG_DEBUG_LIB) \
|
||||
$(FILE_DEBUG_LIB) \
|
||||
$(FILE_INTERFACE_DEBUG_LIB) \
|
||||
$(FRACTAL_DEBUG_LIB) \
|
||||
$(FOUNDATION_DEBUG_LIB) \
|
||||
$(IMAGE_DEBUG_LIB) \
|
||||
$(LOCALIZATION_DEBUG_LIB) \
|
||||
$(LOCALIZATION_ARCHIVE_DEBUG_LIB) \
|
||||
$(LOG_DEBUG_LIB) \
|
||||
$(MATH_DEBUG_LIB) \
|
||||
$(MESSAGE_DISPATCH_DEBUG_LIB) \
|
||||
$(RANDOM_DEBUG_LIB) \
|
||||
$(SHARED_NETWORK_DEBUG_LIB) \
|
||||
$(SHARED_XML_DEBUG_LIB) \
|
||||
$(LIBXML_LIB) \
|
||||
$(SERVER_KEYSHARE_DEBUG_LIB) \
|
||||
$(SERVER_METRICS_DEBUG_LIB) \
|
||||
$(NETWORK_MESSAGES_DEBUG_LIB) \
|
||||
$(SERVER_NETWORK_MESSAGES_DEBUG_LIB) \
|
||||
$(SERVER_UTILITY_DEBUG_LIB) \
|
||||
$(SYNCHRONIZATION_DEBUG_LIB) \
|
||||
$(THREAD_DEBUG_LIB) \
|
||||
$(UNICODE_DEBUG_LIB) \
|
||||
$(UTILITY_DEBUG_LIB) \
|
||||
$(UNICODE_ARCHIVE_DEBUG_LIB) \
|
||||
$(MEMORY_MANAGER_DEBUG_LIB) \
|
||||
|
||||
# empty targets, can oan be overriden by specific project makefiles
|
||||
|
||||
debug_custom_step:
|
||||
|
||||
release_custom_step:
|
||||
|
||||
depend_custom_step:
|
||||
|
||||
custom_clean_step:
|
||||
|
||||
@@ -0,0 +1,134 @@
|
||||
#This makefile assumes that defs.mak is already included by the project specific makefile
|
||||
|
||||
ifeq ($(VERBOSE_BUILD),)
|
||||
V =@
|
||||
else
|
||||
V =
|
||||
endif
|
||||
|
||||
ifeq ($(W_ERROR),)
|
||||
W_ERROR=-Werror
|
||||
endif
|
||||
|
||||
ifeq ($(STATIC_LIB),)
|
||||
CUSTOM_CPP_FLAGS += -fPIC
|
||||
CUSTOM_LINK_FLAGS = -shared
|
||||
|
||||
DYN_LINK = -lc
|
||||
DEBUG_OUTPUT = lib$(LIBRARY).so.0.0
|
||||
LINK_FLAGS = $(CUSTOM_LINK_FLAGS)
|
||||
DEBUG_SYM_LINK = $(V)cd $(SHARED_DEBUG_LIB_PATH) && ln -sf ../../../../src/compile/linux/$(LIBRARY)/debug/$(DEBUG_OUTPUT) lib$(LIBRARY).so
|
||||
|
||||
ifeq ($(BULLSEYE_BUILD),)
|
||||
LINK = g++
|
||||
else
|
||||
LINK = /opt/app/bullseyecoverage/bin/g++
|
||||
endif
|
||||
|
||||
else
|
||||
CUSTOM_LINK_FLAGS =
|
||||
DYN_LINK =
|
||||
CUSTOM_CPP_FLAGS =
|
||||
DEBUG_OUTPUT = lib$(LIBRARY)_d.a
|
||||
LINK_FLAGS = -r -static
|
||||
DEBUG_SYM_LINK =
|
||||
LINK = ld
|
||||
endif
|
||||
|
||||
|
||||
INCLUDE_DIRS_FINAL =$(INCLUDE_DIRS) $(STL_INCLUDE_PATH) /usr/include /usr/include/libxml2
|
||||
|
||||
SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
|
||||
PLATFORM_SRC_LIST =$(shell [ -d $$PWD/../../src/$(PLATFORM) ] && find ../../src/$(PLATFORM) -name "*.cpp")
|
||||
SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST) $(CUSTOM_SRC_LIST)
|
||||
DEPENDENCY_LIST = $(SRC_LIST:.cpp=.d)
|
||||
|
||||
DEBUG_OUTPUT_DIR = $(BOOTPRINT_LIB_PATH)/$(LIBRARY)/debug
|
||||
|
||||
DEBUG_OBJ_LIST = $(addprefix $(DEBUG_OUTPUT_DIR)/, $(notdir $(SRC_LIST:.cpp=.o)))
|
||||
CPP_FLAGS_DEBUG = -g $(addprefix -I,$(INCLUDE_DIRS_FINAL)) $(PLATFORM_DEFINES) $(CUSTOM_CPP_FLAGS) -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE -DUSING_STL -D_DEBUG -D__STL_NO_BAD_ALLOC -Wall -Wno-unknown-pragmas $(W_ERROR) -Wno-ctor-dtor-privacy -Wformat -Wreturn-type -Wimplicit -ftemplate-depth-25
|
||||
#LINK_FLAGS = -r $(CUSTOM_LINK_FLAGS) #for .so libs you need -shared
|
||||
#DEBUG_OUTPUT = lib$(LIBRARY)_d.a
|
||||
|
||||
RELEASE_OUTPUT_DIR = $(BOOTPRINT_LIB_PATH)/$(LIBRARY)/release
|
||||
RELEASE_OBJ_LIST = $(addprefix $(RELEASE_OUTPUT_DIR)/, $(notdir $(SRC_LIST:.cpp=.o)))
|
||||
CPP_FLAGS_RELEASE = -g -O2 $(addprefix -I,$(INCLUDE_DIRS_FINAL)) -Wno-ctor-dtor-privacy $(PLATFORM_DEFINES) -D__STL_NO_BAD_ALLOC -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(CUSTOM_CPP_FLAGS) -Wno-unknown-pragmas -DUSING_STL
|
||||
RELEASE_OUTPUT = lib$(LIBRARY)_r.a
|
||||
|
||||
LINT_SCRIPT = $(BOOTPRINT_SRC_PATH)/../tools/swglint.sh
|
||||
LINT_TARGETS = $(addsuffix .lint,$(SRC_LIST))
|
||||
.PHONY : release
|
||||
|
||||
|
||||
%.cpp.lint : %.cpp
|
||||
@echo prerequisite: $(subst .lint,,$@)
|
||||
@echo output: $@
|
||||
$(LINT_SCRIPT) $(subst .lint,,$@)
|
||||
touch $@
|
||||
|
||||
all : debug release tags
|
||||
|
||||
publish:
|
||||
|
||||
lint: $(LINT_TARGETS)
|
||||
|
||||
$(LINT_TARGETS): $(SRC_LIST)
|
||||
$(LINT_SCRIPT) $(subst .lint,,$@)
|
||||
touch $@
|
||||
|
||||
debug: debug_custom_step
|
||||
+$(V)$(MAKE) $(SHARED_DEBUG_LIB_PATH)/$(DEBUG_OUTPUT)
|
||||
|
||||
$(SHARED_DEBUG_LIB_PATH):
|
||||
$(V)mkdir -p $(SHARED_DEBUG_LIB_PATH)
|
||||
|
||||
$(SHARED_DEBUG_LIB_PATH)/$(DEBUG_OUTPUT): $(SHARED_DEBUG_LIB_PATH) $(DEBUG_OUTPUT_DIR)/$(DEBUG_OUTPUT)
|
||||
|
||||
$(DEBUG_OUTPUT_DIR):
|
||||
$(V)mkdir -p $(DEBUG_OUTPUT_DIR)
|
||||
|
||||
$(DEBUG_OBJ_LIST):
|
||||
@echo $(notdir $(basename $@)).cpp
|
||||
$(V)$(CPP) $(CPP_FLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SRC_LIST))
|
||||
|
||||
$(DEBUG_OUTPUT_DIR)/$(DEBUG_OUTPUT): $(DEBUG_OUTPUT_DIR) $(DEBUG_OBJ_LIST)
|
||||
@echo Creating debug library $@
|
||||
$(V)$(LINK) $(LINK_FLAGS) -o $(DEBUG_OUTPUT_DIR)/$(DEBUG_OUTPUT) $(DYN_LINK) $(DEBUG_OBJ_LIST)
|
||||
$(DEBUG_SYM_LINK)
|
||||
|
||||
ifneq ($(MAKECMDGOALS),clean)
|
||||
ifneq ($(MAKECMDGOALS),depend)
|
||||
include .depend
|
||||
endif
|
||||
endif
|
||||
|
||||
.PHONY : $(DEPENDENCY_LIST)
|
||||
|
||||
#depend: .depend $(DEPENDENCY_LIST)
|
||||
# $(V)perl $(BOOTPRINT_SRC_PATH)/../tools/programmer/linux/dependcat.pl $(DEPENDENCY_LIST) > .depend
|
||||
# $(V)rm $(DEPENDENCY_LIST)
|
||||
|
||||
depend: .depend $(DEPENDENCY_LIST)
|
||||
$(V)perl $(BOOTPRINT_SRC_PATH)/../tools/dependcat.pl $(DEPENDENCY_LIST) > .depend
|
||||
$(V)rm $(DEPENDENCY_LIST)
|
||||
|
||||
.depend:
|
||||
touch .depend
|
||||
+make depend_custom_step
|
||||
+make depend
|
||||
|
||||
$(DEPENDENCY_LIST):
|
||||
@echo Generating dependencies for $(notdir $(@:.d=.cpp))
|
||||
@echo -n $(DEBUG_OUTPUT_DIR)/ >> $@
|
||||
$(V)$(CPP) $(PLATFORM_DEFINES) $(CPP_FLAGS_RELEASE) -MM $(addprefix -I,$(INCLUDE_DIRS_FINAL)) $(@:.d=.cpp)>> $@
|
||||
|
||||
clean: custom_clean_step
|
||||
touch .depend
|
||||
rm -Rf $(DEBUG_OUTPUT_DIR)
|
||||
rm -f .depend
|
||||
|
||||
#Create emacs Tags for source files for easy browsing
|
||||
tags : $(SRC_LIST)
|
||||
@mkdir -p Tags
|
||||
@etags $(SRC_LIST)
|
||||
@mv -f TAGS Tags
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1 @@
|
||||
..\..\..\..\..\..\compile\win32\AnimationEditor\EmbeddedImages.cpp
|
||||
@@ -0,0 +1,2 @@
|
||||
libc
|
||||
MSVCRT
|
||||
@@ -0,0 +1,2 @@
|
||||
LIBCMT
|
||||
MSVCRTD
|
||||
@@ -0,0 +1,2 @@
|
||||
LIBCMT
|
||||
MSVCRTD
|
||||
@@ -0,0 +1,57 @@
|
||||
../../../../../../external/3rd/library/boost
|
||||
../../../../../../external/3rd/library/directx9/include
|
||||
../../../../../../external/3rd/library/libEverQuestTCG/include/public
|
||||
../../../../../../external/3rd/library/libxml2-2.6.7.win32/include
|
||||
../../../../../../external/3rd/library/pcre/4.1/win32/include
|
||||
../../../../../../external/3rd/library/qt/3.3.4/include
|
||||
../../../../../../external/3rd/library/stlport453/stlport
|
||||
../../../../../../external/3rd/library/ui/include
|
||||
../../../../../../external/3rd/library/libMozilla/include/public
|
||||
../../../../../../external/ours/library/archive/include
|
||||
../../../../../../external/ours/library/fileInterface/include/public
|
||||
../../../../../../external/ours/library/localization/include
|
||||
../../../../../../external/ours/library/localizationArchive/include/public
|
||||
../../../../../../external/ours/library/unicode/include
|
||||
../../../../../../external/ours/library/unicodeArchive/include/public
|
||||
../../../../../../game/client/library/swgClientQtWidgets/include/public
|
||||
../../../../../../game/client/library/swgClientUserInterface/include/public
|
||||
../../../../../../game/shared/library/swgSharedNetworkMessages/include/public
|
||||
../../../../../../game/shared/library/swgSharedUtility/include/public
|
||||
../../../../../shared/library/sharedCollision/include/public
|
||||
../../../../../shared/library/sharedCompression/include/public
|
||||
../../../../../shared/library/sharedDebug/include/public
|
||||
../../../../../shared/library/sharedFile/include/public
|
||||
../../../../../shared/library/sharedFoundation/include/public
|
||||
../../../../../shared/library/sharedFoundationTypes/include/public
|
||||
../../../../../shared/library/sharedGame/include/public
|
||||
../../../../../shared/library/sharedImage/include/public
|
||||
../../../../../shared/library/sharedInputMap/include/public
|
||||
../../../../../shared/library/sharedIoWin/include/public
|
||||
../../../../../shared/library/sharedMath/include/public
|
||||
../../../../../shared/library/sharedMathArchive/include/public
|
||||
../../../../../shared/library/sharedMemoryBlockManager/include/public
|
||||
../../../../../shared/library/sharedMemoryManager/include/public
|
||||
../../../../../shared/library/sharedMessageDispatch/include/public
|
||||
../../../../../shared/library/sharedNetworkMessages/include/public
|
||||
../../../../../shared/library/sharedObject/include/public
|
||||
../../../../../shared/library/sharedRandom/include/public
|
||||
../../../../../shared/library/sharedRegex/include/public
|
||||
../../../../../shared/library/sharedSkillSystem/include/public
|
||||
../../../../../shared/library/sharedTerrain/include/public
|
||||
../../../../../shared/library/sharedThread/include/public
|
||||
../../../../../shared/library/sharedUtility/include/public
|
||||
../../../../../shared/library/sharedXml/include/public
|
||||
../../../../library/clientAnimation/include/public
|
||||
../../../../library/clientAudio/include/public
|
||||
../../../../library/clientBugReporting/include/public
|
||||
../../../../library/clientDirectInput/include/public
|
||||
../../../../library/clientGame/include/public
|
||||
../../../../library/clientGraphics/include/public
|
||||
../../../../library/clientObject/include/public
|
||||
../../../../library/clientParticle/include/public
|
||||
../../../../library/clientSkeletalAnimation/include/public
|
||||
../../../../library/clientTerrain/include/public
|
||||
../../../../library/clientTextureRenderer/include/public
|
||||
../../../../library/clientUserInterface/include/public
|
||||
../../include/private
|
||||
../../include/public
|
||||
@@ -0,0 +1 @@
|
||||
../../../../../../compile/win32/AnimationEditor/Debug
|
||||
@@ -0,0 +1 @@
|
||||
../../../../../../compile/win32/AnimationEditor/Optimized
|
||||
@@ -0,0 +1 @@
|
||||
../../../../../../compile/win32/AnimationEditor/Release
|
||||
@@ -0,0 +1,18 @@
|
||||
ws2_32.lib
|
||||
winmm.lib
|
||||
dinput8.lib
|
||||
dsound.lib
|
||||
dxguid.lib
|
||||
dpvs.lib
|
||||
mss32.lib
|
||||
libpcre.a
|
||||
qt-mt334.lib
|
||||
qtmain.lib
|
||||
mswsock.lib
|
||||
lgLcd.lib
|
||||
nspr4.lib
|
||||
plc4.lib
|
||||
profdirserviceprovider_s.lib
|
||||
xpcom.lib
|
||||
xul.lib
|
||||
vivoxSharedWrapper_release.lib
|
||||
@@ -0,0 +1,7 @@
|
||||
libxml2-win32-debug.lib
|
||||
VideoCapture_debug.lib
|
||||
ImageCapture_debug.lib
|
||||
Smart_debug.lib
|
||||
SoeUtil_debug.lib
|
||||
ZlibUtil_debug.lib
|
||||
picn20md.lib
|
||||
@@ -0,0 +1,7 @@
|
||||
libxml2-win32-release.lib
|
||||
VideoCapture_release.lib
|
||||
ImageCapture_release.lib
|
||||
Smart_release.lib
|
||||
SoeUtil_release.lib
|
||||
ZlibUtil_release.lib
|
||||
picn20m.lib
|
||||
@@ -0,0 +1,7 @@
|
||||
libxml2-win32-release.lib
|
||||
VideoCapture_release.lib
|
||||
ImageCapture_release.lib
|
||||
Smart_release.lib
|
||||
SoeUtil_release.lib
|
||||
ZlibUtil_release.lib
|
||||
picn20m.lib
|
||||
@@ -0,0 +1,16 @@
|
||||
..\..\..\..\..\..\external\3rd\library\directx9\lib
|
||||
..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
|
||||
..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
|
||||
..\..\..\..\..\..\external\3rd\library\miles\lib\win
|
||||
..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib
|
||||
..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
|
||||
..\..\..\..\..\..\external\3rd\library\lcdui\lib
|
||||
../../../../../../external/3rd/library/libMozilla/include/private/lib/release
|
||||
..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib
|
||||
../../../../../../external/3rd/library/videocapture/VideoCapture/lib/win32
|
||||
../../../../../../external/3rd/library/videocapture/ImageCapture/lib/win32
|
||||
../../../../../../external/3rd/library/videocapture/Smart/lib/win32
|
||||
../../../../../../external/3rd/library/videocapture/ZlibUtil/lib/win32
|
||||
../../../../../../external/3rd/library/videocapture/SoeUtil/lib/win32
|
||||
../../../../../../external/3rd/library/videocapture/PICTools/Lib/win32
|
||||
@@ -0,0 +1,22 @@
|
||||
..\..\src\shared\ashFormat\ActionGroupListItem.h
|
||||
..\..\src\shared\ashFormat\ActionGroupRootListItem.h
|
||||
..\..\src\shared\ashFormat\ActionListItem.h
|
||||
..\..\src\shared\ashFormat\DetailStateListItem.h
|
||||
..\..\src\shared\ashFormat\MovementActionListItem.h
|
||||
..\..\src\shared\ashFormat\StateLinkListItem.h
|
||||
..\..\src\shared\core\AnimationEditorGameWidget.h
|
||||
..\..\src\shared\core\FindDialog.h
|
||||
..\..\src\shared\core\FindReplaceDialog.h
|
||||
..\..\src\shared\latFormat\ActionGeneratorListItem.h
|
||||
..\..\src\shared\latFormat\DirectionAnimationChoiceListItem.h
|
||||
..\..\src\shared\latFormat\LogicalAnimationListItem.h
|
||||
..\..\src\shared\latFormat\LogicalAnimationTableWidget.h
|
||||
..\..\src\shared\latFormat\PriorityBlendAnimationListItem.h
|
||||
..\..\src\shared\latFormat\PriorityGroupListItem.h
|
||||
..\..\src\shared\latFormat\ProxyAnimationListItem.h
|
||||
..\..\src\shared\latFormat\SpeedAnimationChoiceListItem.h
|
||||
..\..\src\shared\latFormat\SpeedAnimationListItem.h
|
||||
..\..\src\shared\latFormat\StringSelectorAnimationListItem.h
|
||||
..\..\src\shared\latFormat\StringSelectorChoiceListItem.h
|
||||
..\..\src\shared\latFormat\TimeScaleAnimationListItem.h
|
||||
..\..\src\shared\latFormat\YawAnimationListItem.h
|
||||
@@ -0,0 +1,2 @@
|
||||
qt334
|
||||
debugInline
|
||||
@@ -0,0 +1,621 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="BugTool"
|
||||
ProjectGUID="{C05E2B2B-A9A1-4E7E-A35D-2342AF49774E}"
|
||||
Keyword="Win32Proj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
InlineFunctionExpansion="1"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\compile\win32\BugTool\Debug,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include,..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\include\private,..\..\include\public,..\..\ui"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="1"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
ForceConformanceInForLoopScope="TRUE"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="3"
|
||||
PrecompiledHeaderThrough="BugTool\FirstBugTool.h"
|
||||
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
|
||||
AssemblerListingLocation="$(OutDir)/"
|
||||
ObjectFile="$(OutDir)/"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName)_d.pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="TRUE"
|
||||
SuppressStartupBanner="TRUE"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="0"
|
||||
UseFullPaths="TRUE"
|
||||
TreatWChar_tAsBuiltInType="FALSE"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="ws2_32.lib qt-mt334.lib qtmain.lib"
|
||||
OutputFile="$(OutDir)/$(ProjectName)_d.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib,..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32,..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport"
|
||||
IgnoreDefaultLibraryNames="libcmt"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/$(ProjectName)_d.pdb"
|
||||
SubSystem="2"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Optimized|Win32"
|
||||
OutputDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="3"
|
||||
InlineFunctionExpansion="1"
|
||||
EnableIntrinsicFunctions="TRUE"
|
||||
FavorSizeOrSpeed="1"
|
||||
OmitFramePointers="FALSE"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\compile\win32\BugTool\Optimized,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include,..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\include\private,..\..\include\public,..\..\ui"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT"
|
||||
MinimalRebuild="TRUE"
|
||||
RuntimeLibrary="1"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
ForceConformanceInForLoopScope="TRUE"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="3"
|
||||
PrecompiledHeaderThrough="BugTool\FirstBugTool.h"
|
||||
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
|
||||
AssemblerListingLocation="$(OutDir)/"
|
||||
ObjectFile="$(OutDir)/"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName)_o.pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="TRUE"
|
||||
SuppressStartupBanner="TRUE"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="0"
|
||||
UseFullPaths="TRUE"
|
||||
TreatWChar_tAsBuiltInType="FALSE"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="ws2_32.lib qt-mt334.lib qtmain.lib"
|
||||
OutputFile="$(OutDir)/$(ProjectName)_o.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib,..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32,..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport"
|
||||
IgnoreDefaultLibraryNames="libcmt"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/$(ProjectName)_o.pdb"
|
||||
SubSystem="2"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
EnableIntrinsicFunctions="TRUE"
|
||||
FavorSizeOrSpeed="1"
|
||||
OmitFramePointers="TRUE"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\compile\win32\BugTool\Release,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include,..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\include\private,..\..\include\public,..\..\ui"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT"
|
||||
StringPooling="TRUE"
|
||||
RuntimeLibrary="0"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
ForceConformanceInForLoopScope="TRUE"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="3"
|
||||
PrecompiledHeaderThrough="BugTool\FirstBugTool.h"
|
||||
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
|
||||
AssemblerListingLocation="$(OutDir)/"
|
||||
ObjectFile="$(OutDir)/"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName)_r.pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="TRUE"
|
||||
SuppressStartupBanner="TRUE"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="0"
|
||||
UseFullPaths="TRUE"
|
||||
TreatWChar_tAsBuiltInType="FALSE"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="ws2_32.lib qt-mt334.lib qtmain.lib"
|
||||
OutputFile="$(OutDir)/$(ProjectName)_r.exe"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib,..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32,..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport"
|
||||
IgnoreDefaultLibraryNames=""
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/$(ProjectName)_r.pdb"
|
||||
SubSystem="2"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;rc"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\BugToolMain.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\FirstBugTool.cpp"
|
||||
>
|
||||
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\core\MainWindow.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\SystemInstaller.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="def;h;hpp;inl"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\ui\BaseMainWindow.ui.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\ui\images\DummyImageTarget.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\core\FirstBugTool.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\core\MainWindow.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\SystemInstaller.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Ui Files"
|
||||
Filter="ui"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\ui\BaseMainWindow.ui"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="ui $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName)_d.cpp -impl $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)$(InputName).h >> $(TargetDir)$(InputName)_d.cpp"
|
||||
Outputs="$(TargetDir)$(InputName).h;$(TargetDir)$(InputName)_d.cpp"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="ui $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName)_o.cpp -impl $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)$(InputName).h >> $(TargetDir)$(InputName)_o.cpp"
|
||||
Outputs="$(TargetDir)$(InputName).h;$(TargetDir)$(InputName)_o.cpp"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="ui $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName)_r.cpp -impl $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)$(InputName).h >> $(TargetDir)$(InputName)_r.cpp"
|
||||
Outputs="$(TargetDir)$(InputName).h;$(TargetDir)$(InputName)_r.cpp"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Ui Generated Files"
|
||||
Filter=""
|
||||
>
|
||||
<Filter
|
||||
Name="Debug"
|
||||
Filter=""
|
||||
>
|
||||
<Filter
|
||||
Name="Debug Ui Source Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\BugTool\Debug\BaseMainWindow_d.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Debug Ui Header Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\BugTool\Debug\BaseMainWindow.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Optimized"
|
||||
Filter=""
|
||||
>
|
||||
<Filter
|
||||
Name="Optimized Ui Source Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\BugTool\Optimized\BaseMainWindow_o.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Optimized Ui Header Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\BugTool\Optimized\BaseMainWindow.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Release"
|
||||
Filter=""
|
||||
>
|
||||
<Filter
|
||||
Name="Release Ui Source Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\BugTool\Release\BaseMainWindow_r.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Release Ui Header Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\BugTool\Release\BaseMainWindow.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
</Filter>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Template Files"
|
||||
Filter="template"
|
||||
>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,266 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{C05E2B2B-A9A1-4E7E-A35D-2342AF49774E}</ProjectGuid>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</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" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</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" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</OutDir>
|
||||
<IntDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</OutDir>
|
||||
<IntDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</OutDir>
|
||||
<IntDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\compile\win32\BugTool\Debug;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\include\private;..\..\include\public;..\..\ui;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderFile>BugTool\FirstBugTool.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>$(OutDir)</AssemblerListingLocation>
|
||||
<ObjectFileName>$(OutDir)</ObjectFileName>
|
||||
<ProgramDataBaseFileName>$(OutDir)$(ProjectName)_d.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>ws2_32.lib;qt-mt334.lib;qtmain.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)$(ProjectName)_d.exe</OutputFile>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libcmt;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>$(OutDir)$(ProjectName)_d.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
</Link>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Full</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||||
<OmitFramePointers>false</OmitFramePointers>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\compile\win32\BugTool\Optimized;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\include\private;..\..\include\public;..\..\ui;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderFile>BugTool\FirstBugTool.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>$(OutDir)</AssemblerListingLocation>
|
||||
<ObjectFileName>$(OutDir)</ObjectFileName>
|
||||
<ProgramDataBaseFileName>$(OutDir)$(ProjectName)_o.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>ws2_32.lib;qt-mt334.lib;qtmain.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)$(ProjectName)_o.exe</OutputFile>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libcmt;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>$(OutDir)$(ProjectName)_o.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
</Link>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||||
<OmitFramePointers>true</OmitFramePointers>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\compile\win32\BugTool\Release;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\include\private;..\..\include\public;..\..\ui;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderFile>BugTool\FirstBugTool.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>$(OutDir)</AssemblerListingLocation>
|
||||
<ObjectFileName>$(OutDir)</ObjectFileName>
|
||||
<ProgramDataBaseFileName>$(OutDir)$(ProjectName)_r.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>ws2_32.lib;qt-mt334.lib;qtmain.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)$(ProjectName)_r.exe</OutputFile>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>$(OutDir)$(ProjectName)_r.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
</Link>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\..\..\compile\win32\BugTool\Debug\BaseMainWindow_d.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level3</WarningLevel>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\..\..\compile\win32\BugTool\Optimized\BaseMainWindow_o.cpp">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">Level3</WarningLevel>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\..\..\compile\win32\BugTool\Release\BaseMainWindow_r.cpp">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">true</ExcludedFromBuild>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level3</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\shared\core\MainWindow.cpp">
|
||||
<Optimization Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">MaxSpeed</Optimization>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\win32\BugToolMain.cpp">
|
||||
<Optimization Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">MaxSpeed</Optimization>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\win32\FirstBugTool.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\win32\SystemInstaller.cpp">
|
||||
<Optimization Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">MaxSpeed</Optimization>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\..\..\..\..\compile\win32\BugTool\Debug\BaseMainWindow.h" />
|
||||
<ClInclude Include="..\..\..\..\..\..\compile\win32\BugTool\Optimized\BaseMainWindow.h" />
|
||||
<ClInclude Include="..\..\..\..\..\..\compile\win32\BugTool\Release\BaseMainWindow.h" />
|
||||
<ClInclude Include="..\..\src\shared\core\FirstBugTool.h" />
|
||||
<ClInclude Include="..\..\src\shared\core\MainWindow.h" />
|
||||
<ClInclude Include="..\..\src\win32\SystemInstaller.h" />
|
||||
<ClInclude Include="..\..\ui\BaseMainWindow.ui.h" />
|
||||
<ClInclude Include="..\..\ui\images\DummyImageTarget.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\ui\BaseMainWindow.ui">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">ui %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)</Outputs>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">ui %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">$(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)</Outputs>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">ui %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)</Outputs>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\blat194\build\win32\blat.vcxproj">
|
||||
<Project>{ecbdfcff-f4ae-475a-aa90-729eb96430a0}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1 @@
|
||||
libcmt
|
||||
@@ -0,0 +1 @@
|
||||
libcmt
|
||||
@@ -0,0 +1,5 @@
|
||||
../../../../../../external/3rd/library/qt/3.3.4/include
|
||||
../../../../../../external/3rd/library/stlport453/stlport
|
||||
../../include/private
|
||||
../../include/public
|
||||
../../ui
|
||||
@@ -0,0 +1 @@
|
||||
../../../../../../compile/win32/BugTool/Debug
|
||||
@@ -0,0 +1 @@
|
||||
../../../../../../compile/win32/BugTool/Optimized
|
||||
@@ -0,0 +1 @@
|
||||
../../../../../../compile/win32/BugTool/Release
|
||||
@@ -0,0 +1,3 @@
|
||||
ws2_32.lib
|
||||
qt-mt305.lib
|
||||
qtmain.lib
|
||||
@@ -0,0 +1,3 @@
|
||||
../../../../../../external/3rd/library/qt/3.3.4/lib
|
||||
../../../../../../external/3rd/library/stlport453/lib/win32
|
||||
../../../../../../external/3rd/library/regex/libs/regex/build/vc6-stlport
|
||||
@@ -0,0 +1,2 @@
|
||||
qt334
|
||||
debugInline
|
||||
+736
@@ -0,0 +1,736 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="ClientEffectEditor"
|
||||
ProjectGUID="{99E4A02B-6849-4C82-A9D3-213FD45BFE84}"
|
||||
Keyword="Win32Proj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
InlineFunctionExpansion="1"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Debug,..\..\..\..\..\..\external\3rd\library\directx9\include,..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include,..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\..\..\..\..\external\3rd\library\ui\include,..\..\..\..\..\..\external\3rd\library\libMozilla\include\public,..\..\..\..\..\..\external\ours\library\archive\include,..\..\..\..\..\..\external\ours\library\fileInterface\include\public,..\..\..\..\..\..\external\ours\library\localization\include,..\..\..\..\..\..\external\ours\library\localizationArchive\include\public,..\..\..\..\..\..\external\ours\library\unicode\include,..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public,..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public,..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public,..\..\..\..\..\shared\library\sharedCollision\include\public,..\..\..\..\..\shared\library\sharedCompression\include\public,..\..\..\..\..\shared\library\sharedDebug\include\public,..\..\..\..\..\shared\library\sharedFile\include\public,..\..\..\..\..\shared\library\sharedFoundation\include\public,..\..\..\..\..\shared\library\sharedFoundationTypes\include\public,..\..\..\..\..\shared\library\sharedGame\include\public,..\..\..\..\..\shared\library\sharedImage\include\public,..\..\..\..\..\shared\library\sharedInputMap\include\public,..\..\..\..\..\shared\library\sharedIoWin\include\public,..\..\..\..\..\shared\library\sharedMath\include\public,..\..\..\..\..\shared\library\sharedMemoryManager\include\public,..\..\..\..\..\shared\library\sharedMessageDispatch\include\public,..\..\..\..\..\shared\library\sharedNetworkMessages\include\public,..\..\..\..\..\shared\library\sharedObject\include\public,..\..\..\..\..\shared\library\sharedRandom\include\public,..\..\..\..\..\shared\library\sharedRegex\include\public,..\..\..\..\..\shared\library\sharedTerrain\include\public,..\..\..\..\..\shared\library\sharedThread\include\public,..\..\..\..\..\shared\library\sharedUtility\include\public,..\..\..\..\..\shared\library\sharedXml\include\public,..\..\..\..\library\clientAnimation\include\public,..\..\..\..\library\clientAudio\include\public,..\..\..\..\library\clientBugReporting\include\public,..\..\..\..\library\clientDirectInput\include\public,..\..\..\..\library\clientGame\include\public,..\..\..\..\library\clientGraphics\include\public,..\..\..\..\library\clientObject\include\public,..\..\..\..\library\clientParticle\include\public,..\..\..\..\library\clientSkeletalAnimation\include\public,..\..\..\..\library\clientTerrain\include\public,..\..\..\..\library\clientTextureRenderer\include\public,..\..\..\..\library\clientUserInterface\include\public,..\..\include\private,..\..\include\public"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="1"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
ForceConformanceInForLoopScope="TRUE"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="3"
|
||||
PrecompiledHeaderThrough="ClientEffectEditor\FirstClientEffectEditor.h"
|
||||
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
|
||||
AssemblerListingLocation="$(OutDir)/"
|
||||
ObjectFile="$(OutDir)/"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName)_d.pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="TRUE"
|
||||
SuppressStartupBanner="TRUE"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="0"
|
||||
UseFullPaths="TRUE"
|
||||
TreatWChar_tAsBuiltInType="FALSE"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="VideoCapture_debug.lib ImageCapture_debug.lib Smart_debug.lib SoeUtil_debug.lib ZlibUtil_debug.lib picn20md.lib ws2_32.lib winmm.lib dinput8.lib dsound.lib dxguid.lib dpvs.lib libxml2-win32-release.lib mss32.lib libpcre.a qt-mt334.lib qtmain.lib mswsock.lib lgLcd.lib nspr4.lib plc4.lib profdirserviceprovider_s.lib xpcom.lib xul.lib vivoxSharedWrapper_release.lib"
|
||||
OutputFile="$(OutDir)/$(ProjectName)_d.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32,..\..\..\..\..\..\external\3rd\library\directx9\lib,..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86,..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib,..\..\..\..\..\..\external\3rd\library\miles\lib\win,..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib,..\..\..\..\..\..\external\3rd\library\lcdui\lib,..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release,..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib,..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32"
|
||||
IgnoreDefaultLibraryNames="LIBCMT,MSVCRTD,libc,MSVCRT"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/$(ProjectName)_d.pdb"
|
||||
SubSystem="2"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Optimized|Win32"
|
||||
OutputDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="3"
|
||||
InlineFunctionExpansion="1"
|
||||
EnableIntrinsicFunctions="TRUE"
|
||||
FavorSizeOrSpeed="1"
|
||||
OmitFramePointers="FALSE"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Optimized,..\..\..\..\..\..\external\3rd\library\directx9\include,..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include,..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\..\..\..\..\external\3rd\library\ui\include,..\..\..\..\..\..\external\3rd\library\libMozilla\include\public,..\..\..\..\..\..\external\ours\library\archive\include,..\..\..\..\..\..\external\ours\library\fileInterface\include\public,..\..\..\..\..\..\external\ours\library\localization\include,..\..\..\..\..\..\external\ours\library\localizationArchive\include\public,..\..\..\..\..\..\external\ours\library\unicode\include,..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public,..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public,..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public,..\..\..\..\..\shared\library\sharedCollision\include\public,..\..\..\..\..\shared\library\sharedCompression\include\public,..\..\..\..\..\shared\library\sharedDebug\include\public,..\..\..\..\..\shared\library\sharedFile\include\public,..\..\..\..\..\shared\library\sharedFoundation\include\public,..\..\..\..\..\shared\library\sharedFoundationTypes\include\public,..\..\..\..\..\shared\library\sharedGame\include\public,..\..\..\..\..\shared\library\sharedImage\include\public,..\..\..\..\..\shared\library\sharedInputMap\include\public,..\..\..\..\..\shared\library\sharedIoWin\include\public,..\..\..\..\..\shared\library\sharedMath\include\public,..\..\..\..\..\shared\library\sharedMemoryManager\include\public,..\..\..\..\..\shared\library\sharedMessageDispatch\include\public,..\..\..\..\..\shared\library\sharedNetworkMessages\include\public,..\..\..\..\..\shared\library\sharedObject\include\public,..\..\..\..\..\shared\library\sharedRandom\include\public,..\..\..\..\..\shared\library\sharedRegex\include\public,..\..\..\..\..\shared\library\sharedTerrain\include\public,..\..\..\..\..\shared\library\sharedThread\include\public,..\..\..\..\..\shared\library\sharedUtility\include\public,..\..\..\..\..\shared\library\sharedXml\include\public,..\..\..\..\library\clientAnimation\include\public,..\..\..\..\library\clientAudio\include\public,..\..\..\..\library\clientBugReporting\include\public,..\..\..\..\library\clientDirectInput\include\public,..\..\..\..\library\clientGame\include\public,..\..\..\..\library\clientGraphics\include\public,..\..\..\..\library\clientObject\include\public,..\..\..\..\library\clientParticle\include\public,..\..\..\..\library\clientSkeletalAnimation\include\public,..\..\..\..\library\clientTerrain\include\public,..\..\..\..\library\clientTextureRenderer\include\public,..\..\..\..\library\clientUserInterface\include\public,..\..\include\private,..\..\include\public"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT"
|
||||
MinimalRebuild="TRUE"
|
||||
RuntimeLibrary="1"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
ForceConformanceInForLoopScope="TRUE"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="3"
|
||||
PrecompiledHeaderThrough="ClientEffectEditor\FirstClientEffectEditor.h"
|
||||
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
|
||||
AssemblerListingLocation="$(OutDir)/"
|
||||
ObjectFile="$(OutDir)/"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName)_o.pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="TRUE"
|
||||
SuppressStartupBanner="TRUE"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="0"
|
||||
UseFullPaths="TRUE"
|
||||
TreatWChar_tAsBuiltInType="FALSE"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="VideoCapture_release.lib ImageCapture_release.lib Smart_release.lib SoeUtil_release.lib ZlibUtil_release.lib picn20m.lib ws2_32.lib winmm.lib dinput8.lib dsound.lib dxguid.lib dpvs.lib libxml2-win32-release.lib mss32.lib libpcre.a qt-mt334.lib qtmain.lib mswsock.lib lgLcd.lib nspr4.lib plc4.lib profdirserviceprovider_s.lib xpcom.lib xul.lib vivoxSharedWrapper_release.lib"
|
||||
OutputFile="$(OutDir)/$(ProjectName)_o.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32,..\..\..\..\..\..\external\3rd\library\directx9\lib,..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86,..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib,..\..\..\..\..\..\external\3rd\library\miles\lib\win,..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib,..\..\..\..\..\..\external\3rd\library\lcdui\lib,..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release,..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib,..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32"
|
||||
IgnoreDefaultLibraryNames="LIBCMT,MSVCRTD,libc,MSVCRT"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/$(ProjectName)_o.pdb"
|
||||
SubSystem="2"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
EnableIntrinsicFunctions="TRUE"
|
||||
FavorSizeOrSpeed="1"
|
||||
OmitFramePointers="TRUE"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Release,..\..\..\..\..\..\external\3rd\library\directx9\include,..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include,..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\..\..\..\..\external\3rd\library\ui\include,..\..\..\..\..\..\external\3rd\library\libMozilla\include\public,..\..\..\..\..\..\external\ours\library\archive\include,..\..\..\..\..\..\external\ours\library\fileInterface\include\public,..\..\..\..\..\..\external\ours\library\localization\include,..\..\..\..\..\..\external\ours\library\localizationArchive\include\public,..\..\..\..\..\..\external\ours\library\unicode\include,..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public,..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public,..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public,..\..\..\..\..\shared\library\sharedCollision\include\public,..\..\..\..\..\shared\library\sharedCompression\include\public,..\..\..\..\..\shared\library\sharedDebug\include\public,..\..\..\..\..\shared\library\sharedFile\include\public,..\..\..\..\..\shared\library\sharedFoundation\include\public,..\..\..\..\..\shared\library\sharedFoundationTypes\include\public,..\..\..\..\..\shared\library\sharedGame\include\public,..\..\..\..\..\shared\library\sharedImage\include\public,..\..\..\..\..\shared\library\sharedInputMap\include\public,..\..\..\..\..\shared\library\sharedIoWin\include\public,..\..\..\..\..\shared\library\sharedMath\include\public,..\..\..\..\..\shared\library\sharedMemoryManager\include\public,..\..\..\..\..\shared\library\sharedMessageDispatch\include\public,..\..\..\..\..\shared\library\sharedNetworkMessages\include\public,..\..\..\..\..\shared\library\sharedObject\include\public,..\..\..\..\..\shared\library\sharedRandom\include\public,..\..\..\..\..\shared\library\sharedRegex\include\public,..\..\..\..\..\shared\library\sharedTerrain\include\public,..\..\..\..\..\shared\library\sharedThread\include\public,..\..\..\..\..\shared\library\sharedUtility\include\public,..\..\..\..\..\shared\library\sharedXml\include\public,..\..\..\..\library\clientAnimation\include\public,..\..\..\..\library\clientAudio\include\public,..\..\..\..\library\clientBugReporting\include\public,..\..\..\..\library\clientDirectInput\include\public,..\..\..\..\library\clientGame\include\public,..\..\..\..\library\clientGraphics\include\public,..\..\..\..\library\clientObject\include\public,..\..\..\..\library\clientParticle\include\public,..\..\..\..\library\clientSkeletalAnimation\include\public,..\..\..\..\library\clientTerrain\include\public,..\..\..\..\library\clientTextureRenderer\include\public,..\..\..\..\library\clientUserInterface\include\public,..\..\include\private,..\..\include\public"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT"
|
||||
StringPooling="TRUE"
|
||||
RuntimeLibrary="0"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
ForceConformanceInForLoopScope="TRUE"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="3"
|
||||
PrecompiledHeaderThrough="ClientEffectEditor\FirstClientEffectEditor.h"
|
||||
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
|
||||
AssemblerListingLocation="$(OutDir)/"
|
||||
ObjectFile="$(OutDir)/"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName)_r.pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="TRUE"
|
||||
SuppressStartupBanner="TRUE"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="0"
|
||||
UseFullPaths="TRUE"
|
||||
TreatWChar_tAsBuiltInType="FALSE"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="VideoCapture_release.lib ImageCapture_release.lib Smart_release.lib SoeUtil_release.lib ZlibUtil_release.lib picn20m.lib ws2_32.lib winmm.lib dinput8.lib dsound.lib dxguid.lib dpvs.lib libxml2-win32-release.lib mss32.lib libpcre.a qt-mt334.lib qtmain.lib mswsock.lib lgLcd.lib nspr4.lib plc4.lib profdirserviceprovider_s.lib xpcom.lib xul.lib vivoxSharedWrapper_release.lib"
|
||||
OutputFile="$(OutDir)/$(ProjectName)_r.exe"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32,..\..\..\..\..\..\external\3rd\library\directx9\lib,..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86,..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib,..\..\..\..\..\..\external\3rd\library\miles\lib\win,..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib,..\..\..\..\..\..\external\3rd\library\lcdui\lib,..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release,..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib,..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32"
|
||||
IgnoreDefaultLibraryNames="libc,MSVCRT"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/$(ProjectName)_r.pdb"
|
||||
SubSystem="2"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;rc"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\ClientEffectEditorMain.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\core\ClientEffectGameWidget.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\core\EmbeddedImageLoader.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\ClientEffectEditor\EmbeddedImages.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\FirstClientEffectEditor.cpp"
|
||||
>
|
||||
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\core\MainWindow.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="def;h;hpp;inl"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\ui\BaseMainWindow.ui.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\core\ClientEffectGameWidget.h"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="moc $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i $(InputPath) -o $(TargetDir)$(InputName).moc"
|
||||
Outputs="$(TargetDir)$(InputName).moc"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="moc $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i $(InputPath) -o $(TargetDir)$(InputName).moc"
|
||||
Outputs="$(TargetDir)$(InputName).moc"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="moc $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i $(InputPath) -o $(TargetDir)$(InputName).moc"
|
||||
Outputs="$(TargetDir)$(InputName).moc"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\ui\images\DummyImageTarget.h"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
CommandLine="dir /B /S $(InputDir)*.png | perl ..\..\..\..\..\..\..\tools\xargs.pl ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)..\EmbeddedImages.cpp -embed ClientEffectEditor
"
|
||||
Outputs="$(TargetDir)..\EmbeddedImages.cpp"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
CommandLine="dir /B /S $(InputDir)*.png | perl ..\..\..\..\..\..\..\tools\xargs.pl ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)..\EmbeddedImages.cpp -embed ClientEffectEditor
"
|
||||
Outputs="$(TargetDir)..\EmbeddedImages.cpp"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
CommandLine="dir /B /S $(InputDir)*.png | perl ..\..\..\..\..\..\..\tools\xargs.pl ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)..\EmbeddedImages.cpp -embed ClientEffectEditor
"
|
||||
Outputs="$(TargetDir)..\EmbeddedImages.cpp"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\core\EmbeddedImageLoader.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\core\FirstClientEffectEditor.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\shared\core\MainWindow.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\resource.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Ui Files"
|
||||
Filter="ui"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\ui\BaseMainWindow.ui"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="ui $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName)_d.cpp -impl $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)$(InputName).h >> $(TargetDir)$(InputName)_d.cpp"
|
||||
Outputs="$(TargetDir)$(InputName).h;$(TargetDir)$(InputName)_d.cpp"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="ui $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName)_o.cpp -impl $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)$(InputName).h >> $(TargetDir)$(InputName)_o.cpp"
|
||||
Outputs="$(TargetDir)$(InputName).h;$(TargetDir)$(InputName)_o.cpp"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="ui $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName)_r.cpp -impl $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)$(InputName).h >> $(TargetDir)$(InputName)_r.cpp"
|
||||
Outputs="$(TargetDir)$(InputName).h;$(TargetDir)$(InputName)_r.cpp"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Ui Generated Files"
|
||||
Filter=""
|
||||
>
|
||||
<Filter
|
||||
Name="Debug"
|
||||
Filter=""
|
||||
>
|
||||
<Filter
|
||||
Name="Debug Ui Source Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Debug\BaseMainWindow_d.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Debug Ui Header Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Debug\BaseMainWindow.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Optimized"
|
||||
Filter=""
|
||||
>
|
||||
<Filter
|
||||
Name="Optimized Ui Source Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Optimized\BaseMainWindow_o.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Optimized Ui Header Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Optimized\BaseMainWindow.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Release"
|
||||
Filter=""
|
||||
>
|
||||
<Filter
|
||||
Name="Release Ui Source Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Release\BaseMainWindow_r.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Release Ui Header Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Release\BaseMainWindow.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
</Filter>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\ClientEffectEditor.rc"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\icon1.ico"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Template Files"
|
||||
Filter="template"
|
||||
>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
+560
@@ -0,0 +1,560 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{99E4A02B-6849-4C82-A9D3-213FD45BFE84}</ProjectGuid>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</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" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</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" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</OutDir>
|
||||
<IntDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</OutDir>
|
||||
<IntDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</OutDir>
|
||||
<IntDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\compile\win32\ClientEffectEditor\Debug;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedInputMap\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\..\..\library\clientAnimation\include\public;..\..\..\..\library\clientAudio\include\public;..\..\..\..\library\clientBugReporting\include\public;..\..\..\..\library\clientDirectInput\include\public;..\..\..\..\library\clientGame\include\public;..\..\..\..\library\clientGraphics\include\public;..\..\..\..\library\clientObject\include\public;..\..\..\..\library\clientParticle\include\public;..\..\..\..\library\clientSkeletalAnimation\include\public;..\..\..\..\library\clientTerrain\include\public;..\..\..\..\library\clientTextureRenderer\include\public;..\..\..\..\library\clientUserInterface\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderFile>ClientEffectEditor\FirstClientEffectEditor.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>$(OutDir)</AssemblerListingLocation>
|
||||
<ObjectFileName>$(OutDir)</ObjectFileName>
|
||||
<ProgramDataBaseFileName>$(OutDir)$(ProjectName)_d.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>VideoCapture_debug.lib;ImageCapture_debug.lib;Smart_debug.lib;SoeUtil_debug.lib;ZlibUtil_debug.lib;picn20md.lib;ws2_32.lib;winmm.lib;dinput8.lib;dsound.lib;dxguid.lib;dpvs.lib;libxml2-win32-release.lib;mss32.lib;libpcre.a;qt-mt334.lib;qtmain.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)$(ProjectName)_d.exe</OutputFile>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>LIBCMT;MSVCRTD;libc;MSVCRT;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>$(OutDir)$(ProjectName)_d.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
</Link>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Full</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||||
<OmitFramePointers>false</OmitFramePointers>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\compile\win32\ClientEffectEditor\Optimized;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedInputMap\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\..\..\library\clientAnimation\include\public;..\..\..\..\library\clientAudio\include\public;..\..\..\..\library\clientBugReporting\include\public;..\..\..\..\library\clientDirectInput\include\public;..\..\..\..\library\clientGame\include\public;..\..\..\..\library\clientGraphics\include\public;..\..\..\..\library\clientObject\include\public;..\..\..\..\library\clientParticle\include\public;..\..\..\..\library\clientSkeletalAnimation\include\public;..\..\..\..\library\clientTerrain\include\public;..\..\..\..\library\clientTextureRenderer\include\public;..\..\..\..\library\clientUserInterface\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderFile>ClientEffectEditor\FirstClientEffectEditor.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>$(OutDir)</AssemblerListingLocation>
|
||||
<ObjectFileName>$(OutDir)</ObjectFileName>
|
||||
<ProgramDataBaseFileName>$(OutDir)$(ProjectName)_o.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;ws2_32.lib;winmm.lib;dinput8.lib;dsound.lib;dxguid.lib;dpvs.lib;libxml2-win32-release.lib;mss32.lib;libpcre.a;qt-mt334.lib;qtmain.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)$(ProjectName)_o.exe</OutputFile>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>LIBCMT;MSVCRTD;libc;MSVCRT;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>$(OutDir)$(ProjectName)_o.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
</Link>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||||
<OmitFramePointers>true</OmitFramePointers>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\compile\win32\ClientEffectEditor\Release;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedInputMap\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\..\..\library\clientAnimation\include\public;..\..\..\..\library\clientAudio\include\public;..\..\..\..\library\clientBugReporting\include\public;..\..\..\..\library\clientDirectInput\include\public;..\..\..\..\library\clientGame\include\public;..\..\..\..\library\clientGraphics\include\public;..\..\..\..\library\clientObject\include\public;..\..\..\..\library\clientParticle\include\public;..\..\..\..\library\clientSkeletalAnimation\include\public;..\..\..\..\library\clientTerrain\include\public;..\..\..\..\library\clientTextureRenderer\include\public;..\..\..\..\library\clientUserInterface\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderFile>ClientEffectEditor\FirstClientEffectEditor.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>$(OutDir)</AssemblerListingLocation>
|
||||
<ObjectFileName>$(OutDir)</ObjectFileName>
|
||||
<ProgramDataBaseFileName>$(OutDir)$(ProjectName)_r.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;ws2_32.lib;winmm.lib;dinput8.lib;dsound.lib;dxguid.lib;dpvs.lib;libxml2-win32-release.lib;mss32.lib;libpcre.a;qt-mt334.lib;qtmain.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)$(ProjectName)_r.exe</OutputFile>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libc;MSVCRT;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>$(OutDir)$(ProjectName)_r.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
</Link>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Debug\BaseMainWindow_d.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level3</WarningLevel>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\..\..\compile\win32\ClientEffectEditor\EmbeddedImages.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level3</WarningLevel>
|
||||
<Optimization Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">MaxSpeed</Optimization>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">Level3</WarningLevel>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level3</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Optimized\BaseMainWindow_o.cpp">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">Level3</WarningLevel>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Release\BaseMainWindow_r.cpp">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">true</ExcludedFromBuild>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level3</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\shared\core\ClientEffectGameWidget.cpp" />
|
||||
<ClCompile Include="..\..\src\shared\core\EmbeddedImageLoader.cpp">
|
||||
<Optimization Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">MaxSpeed</Optimization>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\shared\core\MainWindow.cpp">
|
||||
<Optimization Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">MaxSpeed</Optimization>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\win32\ClientEffectEditorMain.cpp">
|
||||
<Optimization Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">MaxSpeed</Optimization>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\win32\FirstClientEffectEditor.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Debug\BaseMainWindow.h" />
|
||||
<ClInclude Include="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Optimized\BaseMainWindow.h" />
|
||||
<ClInclude Include="..\..\..\..\..\..\compile\win32\ClientEffectEditor\Release\BaseMainWindow.h" />
|
||||
<CustomBuild Include="..\..\src\shared\core\ClientEffectGameWidget.h">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">moc %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(TargetDir)%(Filename).moc;%(Outputs)</Outputs>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">moc %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">$(TargetDir)%(Filename).moc;%(Outputs)</Outputs>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">moc %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(TargetDir)%(Filename).moc;%(Outputs)</Outputs>
|
||||
</CustomBuild>
|
||||
<ClInclude Include="..\..\src\shared\core\EmbeddedImageLoader.h" />
|
||||
<ClInclude Include="..\..\src\shared\core\FirstClientEffectEditor.h" />
|
||||
<ClInclude Include="..\..\src\shared\core\MainWindow.h" />
|
||||
<ClInclude Include="..\..\src\win32\resource.h" />
|
||||
<ClInclude Include="..\..\ui\BaseMainWindow.ui.h" />
|
||||
<CustomBuild Include="..\..\ui\images\DummyImageTarget.h">
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">dir /B /S %(RootDir)%(Directory)*.png | perl ..\..\..\..\..\..\..\tools\xargs.pl ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)..\EmbeddedImages.cpp -embed ClientEffectEditor
|
||||
</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(TargetDir)..\EmbeddedImages.cpp;%(Outputs)</Outputs>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">dir /B /S %(RootDir)%(Directory)*.png | perl ..\..\..\..\..\..\..\tools\xargs.pl ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)..\EmbeddedImages.cpp -embed ClientEffectEditor
|
||||
</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">$(TargetDir)..\EmbeddedImages.cpp;%(Outputs)</Outputs>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">dir /B /S %(RootDir)%(Directory)*.png | perl ..\..\..\..\..\..\..\tools\xargs.pl ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)..\EmbeddedImages.cpp -embed ClientEffectEditor
|
||||
</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(TargetDir)..\EmbeddedImages.cpp;%(Outputs)</Outputs>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\ui\BaseMainWindow.ui">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">ui %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)</Outputs>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">ui %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">$(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)</Outputs>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">ui %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)</Outputs>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="..\..\src\win32\ClientEffectEditor.rc" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="..\..\src\win32\icon1.ico" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\blat194\build\win32\blat.vcxproj">
|
||||
<Project>{ecbdfcff-f4ae-475a-aa90-729eb96430a0}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\lcdui_src\build\win32\lcdui.vcxproj">
|
||||
<Project>{20d2aee7-b60a-4ec9-b187-fa76062a6c39}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\build\win32\libEverQuestTCG.vcxproj">
|
||||
<Project>{03f3c054-f380-4618-be46-6e25061a3587}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\libMozilla\build\win32\libMozilla.vcxproj">
|
||||
<Project>{c6c1e14a-dedb-48c6-b028-0c9e4eff5dc4}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\udplibrary\udplibrary.vcxproj">
|
||||
<Project>{1a7d1159-3474-4520-882f-f1842f0aafae}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\ui\build\win32\ui.vcxproj">
|
||||
<Project>{d4accb0c-7b66-433d-b715-8ef7f43b8e2d}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\zlib-1.2.3\zlib.vcxproj">
|
||||
<Project>{9496a020-65ad-45a6-9acf-ae4f3358b027}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\archive\build\win32\archive.vcxproj">
|
||||
<Project>{52153865-1abf-4fbb-84c4-0fc439716f1e}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\fileInterface\build\win32\fileInterface.vcxproj">
|
||||
<Project>{de93996c-cb51-4d61-85a0-a9dfc677445f}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\localizationArchive\build\win32\localizationArchive.vcxproj">
|
||||
<Project>{a8036ec1-9682-4315-a3d2-6b26c3245d50}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\localization\build\win32\localization.vcxproj">
|
||||
<Project>{0fb11bc8-3bd1-4471-8dda-da3bc05937b2}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\singleton\build\win32\singleton.vcxproj">
|
||||
<Project>{d409a18e-f788-4f1b-bad1-ed58ee4d458f}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\unicodeArchive\build\win32\unicodeArchive.vcxproj">
|
||||
<Project>{41269a52-38b8-4f9a-ae38-1103bb03a10b}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\unicode\build\win32\unicode.vcxproj">
|
||||
<Project>{b97963ef-49e4-477e-85ff-e7fee7c626d7}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\game\client\library\swgClientQtWidgets\build\win32\swgClientQtWidgets.vcxproj">
|
||||
<Project>{805a2fe0-7592-4f4e-bc23-a0d5abc624b4}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\game\client\library\swgClientUserInterface\build\win32\swgClientUserInterface.vcxproj">
|
||||
<Project>{eaa23f07-4419-4aed-83d2-06654119b6f6}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\build\win32\swgSharedNetworkMessages.vcxproj">
|
||||
<Project>{fcc0f2b5-aade-4454-aff2-4d91365b4883}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\game\shared\library\swgSharedUtility\build\win32\swgSharedUtility.vcxproj">
|
||||
<Project>{a378fab0-5b67-44bd-a3d8-815861792d6b}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedCollision\build\win32\sharedCollision.vcxproj">
|
||||
<Project>{03a9a516-227e-49bb-a1c5-64b34cbddc66}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedCommandParser\build\win32\sharedCommandParser.vcxproj">
|
||||
<Project>{20d4d8eb-87ca-4c5f-8ba3-ffc898563c40}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedCompression\build\win32\sharedCompression.vcxproj">
|
||||
<Project>{6bd52b35-92ca-44e4-995e-2b79c7398183}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedDebug\build\win32\sharedDebug.vcxproj">
|
||||
<Project>{f3245c29-7760-4956-b1b7-fc483be417cd}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedFile\build\win32\sharedFile.vcxproj">
|
||||
<Project>{e0f9d922-daa7-475e-a95a-7bc540ed58fe}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedFoundationTypes\build\win32\sharedFoundationTypes.vcxproj">
|
||||
<Project>{d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedFoundation\build\win32\sharedFoundation.vcxproj">
|
||||
<Project>{c595c10e-ada8-429a-896a-8904a46737d3}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedFractal\build\win32\sharedFractal.vcxproj">
|
||||
<Project>{882d8e54-0077-440b-94ac-762bde522e3b}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedGame\build\win32\sharedGame.vcxproj">
|
||||
<Project>{2338795c-ce02-4902-bef4-53645a0c3267}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedImage\build\win32\sharedImage.vcxproj">
|
||||
<Project>{aacbd5d6-d7dd-4ff9-8523-316ccf20115a}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedInputMap\build\win32\sharedInputMap.vcxproj">
|
||||
<Project>{101cf34f-b5fd-4a14-a3e9-fd28078760be}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedIoWin\build\win32\sharedIoWin.vcxproj">
|
||||
<Project>{03819289-4e8b-44e9-9f3b-a3243c9797c9}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedLog\build\win32\sharedLog.vcxproj">
|
||||
<Project>{2ae0cef0-c4f2-4786-a026-8338fb09d61b}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedMathArchive\build\win32\sharedMathArchive.vcxproj">
|
||||
<Project>{0202adb3-5587-4138-a626-52b7db52fbba}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedMath\build\win32\sharedMath.vcxproj">
|
||||
<Project>{5789ea7c-6596-4dcc-a9fb-dd7582888f90}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedMemoryManager\build\win32\sharedMemoryManager.vcxproj">
|
||||
<Project>{dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedMessageDispatch\build\win32\sharedMessageDispatch.vcxproj">
|
||||
<Project>{c87164f5-14a9-403c-8bc4-217fd40731ea}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedNetworkMessages\build\win32\sharedNetworkMessages.vcxproj">
|
||||
<Project>{decf2964-3a66-4fa6-ab27-d4507c5480ea}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedNetwork\build\win32\sharedNetwork.vcxproj">
|
||||
<Project>{df4d72ef-2341-4462-ab78-b130450511da}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedObject\build\win32\sharedObject.vcxproj">
|
||||
<Project>{ac1277c1-ce5a-4ece-9be3-6b4647b657a5}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedRandom\build\win32\sharedRandom.vcxproj">
|
||||
<Project>{2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedRegex\build\win32\sharedRegex.vcxproj">
|
||||
<Project>{1d87a2e7-f0cf-42e9-bc38-846c53622c40}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedRemoteDebugServer\build\win32\sharedRemoteDebugServer.vcxproj">
|
||||
<Project>{afa9ad0a-6e1a-4004-a1ff-8293eb957ef1}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\SHAREDSKILLSYSTEM\build\win32\sharedSkillSystem.vcxproj">
|
||||
<Project>{83ea2b87-762e-4ec6-bb06-2dcbae759d6e}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedStatusWindow\build\win32\sharedStatusWindow.vcxproj">
|
||||
<Project>{ae9205dd-83fc-4f31-a5b3-70623b3107a1}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedSwitcher\build\win32\sharedSwitcher.vcxproj">
|
||||
<Project>{070babeb-131a-4dc7-8621-69407c531f8e}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedSynchronization\build\win32\sharedSynchronization.vcxproj">
|
||||
<Project>{2fe4e38d-be7d-4e3b-9613-63e9f01855f4}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedTerrain\build\win32\sharedTerrain.vcxproj">
|
||||
<Project>{6612cc35-6931-4ac6-a315-e955ca60b643}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedThread\build\win32\sharedThread.vcxproj">
|
||||
<Project>{858f7dce-325a-467c-9dda-2fe40217286f}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedUtility\build\win32\sharedUtility.vcxproj">
|
||||
<Project>{52df0d16-d070-47fc-b987-8d80b027d114}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedXml\build\win32\sharedXml.vcxproj">
|
||||
<Project>{51e2988c-ce2d-42d7-a27c-06a322b4aac2}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientAnimation\build\win32\clientAnimation.vcxproj">
|
||||
<Project>{4af54aee-35f9-473c-8c2e-c24d2eedb17b}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientAudio\build\win32\clientAudio.vcxproj">
|
||||
<Project>{250a5957-7bb9-4f50-b0e9-19c87136977e}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientBugReporting\build\win32\clientBugReporting.vcxproj">
|
||||
<Project>{147d02d6-c76c-4058-863a-a9b3364c2047}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientDirectInput\build\win32\clientDirectInput.vcxproj">
|
||||
<Project>{f1b57bf8-072e-4e69-940a-c254a98da10d}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientGame\build\win32\clientGame.vcxproj">
|
||||
<Project>{d10d1a1a-6129-4ef1-b3d7-5c12ee53dfca}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientGraphics\build\win32\clientGraphics.vcxproj">
|
||||
<Project>{7c4b8a91-be83-4bfe-af94-f75ce39fe67d}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientObject\build\win32\clientObject.vcxproj">
|
||||
<Project>{82393d39-3807-4c87-932f-e3571616a7dd}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientParticle\build\win32\clientParticle.vcxproj">
|
||||
<Project>{97a83cde-723f-47de-a5c6-b779cf50ae9c}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientSkeletalAnimation\build\win32\clientSkeletalAnimation.vcxproj">
|
||||
<Project>{66bcfd48-0307-41fd-b4d9-9991bf572a27}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientTerrain\build\win32\clientTerrain.vcxproj">
|
||||
<Project>{2024a6b1-5e9a-4cc9-8243-7232f9b62264}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientTextureRenderer\build\win32\clientTextureRenderer.vcxproj">
|
||||
<Project>{f1fdc6af-af8c-42a5-826e-c66ae9cc6ca6}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientUserInterface\build\win32\clientUserInterface.vcxproj">
|
||||
<Project>{92605a4d-baa0-46e6-9733-6464f6578b6a}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Direct3d9\build\win32\Direct3d9.vcxproj">
|
||||
<Project>{e89a79a9-8488-4d42-bf88-b9833f5607c0}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Direct3d9\build\win32\Direct3d9_ffp.vcxproj">
|
||||
<Project>{2889f119-79c4-4ea7-893a-9e0bd5f871c8}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Direct3d9\build\win32\Direct3d9_vsps.vcxproj">
|
||||
<Project>{cf3b1ee2-d965-44e1-9464-01297964f2cb}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1 @@
|
||||
..\..\..\..\..\..\compile\win32\ClientEffectEditor\EmbeddedImages.cpp
|
||||
@@ -0,0 +1,2 @@
|
||||
libc
|
||||
MSVCRT
|
||||
@@ -0,0 +1,2 @@
|
||||
LIBCMT
|
||||
MSVCRTD
|
||||
@@ -0,0 +1,2 @@
|
||||
LIBCMT
|
||||
MSVCRTD
|
||||
@@ -0,0 +1,49 @@
|
||||
../../../../../../external/3rd/library/directx9/include
|
||||
../../../../../../external/3rd/library/libEverQuestTCG/include/public
|
||||
../../../../../../external/3rd/library/qt/3.3.4/include
|
||||
../../../../../../external/3rd/library/stlport453/stlport
|
||||
../../../../../../external/3rd/library/ui/include
|
||||
../../../../../../external/3rd/library/libMozilla/include/public
|
||||
../../../../../../external/ours/library/archive/include
|
||||
../../../../../../external/ours/library/fileInterface/include/public
|
||||
../../../../../../external/ours/library/localization/include
|
||||
../../../../../../external/ours/library/localizationArchive/include/public
|
||||
../../../../../../external/ours/library/unicode/include
|
||||
../../../../../../external/ours/library/unicodeArchive/include/public
|
||||
../../../../../../game/client/library/swgClientQtWidgets/include/public
|
||||
../../../../../../game/client/library/swgClientUserInterface/include/public
|
||||
../../../../../shared/library/sharedCollision/include/public
|
||||
../../../../../shared/library/sharedCompression/include/public
|
||||
../../../../../shared/library/sharedDebug/include/public
|
||||
../../../../../shared/library/sharedFile/include/public
|
||||
../../../../../shared/library/sharedFoundation/include/public
|
||||
../../../../../shared/library/sharedFoundationTypes/include/public
|
||||
../../../../../shared/library/sharedGame/include/public
|
||||
../../../../../shared/library/sharedImage/include/public
|
||||
../../../../../shared/library/sharedInputMap/include/public
|
||||
../../../../../shared/library/sharedIoWin/include/public
|
||||
../../../../../shared/library/sharedMath/include/public
|
||||
../../../../../shared/library/sharedMemoryManager/include/public
|
||||
../../../../../shared/library/sharedMessageDispatch/include/public
|
||||
../../../../../shared/library/sharedNetworkMessages/include/public
|
||||
../../../../../shared/library/sharedObject/include/public
|
||||
../../../../../shared/library/sharedRandom/include/public
|
||||
../../../../../shared/library/sharedRegex/include/public
|
||||
../../../../../shared/library/sharedTerrain/include/public
|
||||
../../../../../shared/library/sharedThread/include/public
|
||||
../../../../../shared/library/sharedUtility/include/public
|
||||
../../../../../shared/library/sharedXml/include/public
|
||||
../../../../library/clientAnimation/include/public
|
||||
../../../../library/clientAudio/include/public
|
||||
../../../../library/clientBugReporting/include/public
|
||||
../../../../library/clientDirectInput/include/public
|
||||
../../../../library/clientGame/include/public
|
||||
../../../../library/clientGraphics/include/public
|
||||
../../../../library/clientObject/include/public
|
||||
../../../../library/clientParticle/include/public
|
||||
../../../../library/clientSkeletalAnimation/include/public
|
||||
../../../../library/clientTerrain/include/public
|
||||
../../../../library/clientTextureRenderer/include/public
|
||||
../../../../library/clientUserInterface/include/public
|
||||
../../include/private
|
||||
../../include/public
|
||||
@@ -0,0 +1 @@
|
||||
../../../../../../compile/win32/ClientEffectEditor/Debug
|
||||
@@ -0,0 +1 @@
|
||||
../../../../../../compile/win32/ClientEffectEditor/Optimized
|
||||
@@ -0,0 +1 @@
|
||||
../../../../../../compile/win32/ClientEffectEditor/Release
|
||||
@@ -0,0 +1,19 @@
|
||||
ws2_32.lib
|
||||
winmm.lib
|
||||
dinput8.lib
|
||||
dsound.lib
|
||||
dxguid.lib
|
||||
dpvs.lib
|
||||
libxml2-win32-release.lib
|
||||
mss32.lib
|
||||
libpcre.a
|
||||
qt-mt334.lib
|
||||
qtmain.lib
|
||||
mswsock.lib
|
||||
lgLcd.lib
|
||||
nspr4.lib
|
||||
plc4.lib
|
||||
profdirserviceprovider_s.lib
|
||||
xpcom.lib
|
||||
xul.lib
|
||||
vivoxSharedWrapper_release.lib
|
||||
@@ -0,0 +1,6 @@
|
||||
VideoCapture_debug.lib
|
||||
ImageCapture_debug.lib
|
||||
Smart_debug.lib
|
||||
SoeUtil_debug.lib
|
||||
ZlibUtil_debug.lib
|
||||
picn20md.lib
|
||||
@@ -0,0 +1,6 @@
|
||||
VideoCapture_release.lib
|
||||
ImageCapture_release.lib
|
||||
Smart_release.lib
|
||||
SoeUtil_release.lib
|
||||
ZlibUtil_release.lib
|
||||
picn20m.lib
|
||||
@@ -0,0 +1,6 @@
|
||||
VideoCapture_release.lib
|
||||
ImageCapture_release.lib
|
||||
Smart_release.lib
|
||||
SoeUtil_release.lib
|
||||
ZlibUtil_release.lib
|
||||
picn20m.lib
|
||||
@@ -0,0 +1,16 @@
|
||||
..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
|
||||
..\..\..\..\..\..\external\3rd\library\directx9\lib
|
||||
..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
|
||||
..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
|
||||
..\..\..\..\..\..\external\3rd\library\miles\lib\win
|
||||
..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib
|
||||
..\..\..\..\..\..\external\3rd\library\lcdui\lib
|
||||
../../../../../../external/3rd/library/libMozilla/include/private/lib/release
|
||||
..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib
|
||||
../../../../../../external/3rd/library/videocapture/VideoCapture/lib/win32
|
||||
../../../../../../external/3rd/library/videocapture/ImageCapture/lib/win32
|
||||
../../../../../../external/3rd/library/videocapture/Smart/lib/win32
|
||||
../../../../../../external/3rd/library/videocapture/ZlibUtil/lib/win32
|
||||
../../../../../../external/3rd/library/videocapture/SoeUtil/lib/win32
|
||||
../../../../../../external/3rd/library/videocapture/PICTools/Lib/win32
|
||||
@@ -0,0 +1 @@
|
||||
..\..\src\shared\core\ClientEffectGameWidget.h
|
||||
@@ -0,0 +1,4 @@
|
||||
qt334
|
||||
incremental_r_no
|
||||
|
||||
debugInline
|
||||
@@ -0,0 +1,324 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="CrashReporter"
|
||||
ProjectGUID="{7927E450-9A0C-46B3-ABF3-34384D6F54CD}"
|
||||
Keyword="Win32Proj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
InlineFunctionExpansion="1"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public,..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public,..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public,..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public,..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public,..\..\..\..\..\..\engine\shared\library\sharedThread\include\public,..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\..\..\..\..\external\3rd\library\blat194\src\win32,..\..\include\public"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="1"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
ForceConformanceInForLoopScope="TRUE"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="3"
|
||||
PrecompiledHeaderThrough="CrashReporter\FirstCrashReporter.h"
|
||||
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
|
||||
AssemblerListingLocation="$(OutDir)/"
|
||||
ObjectFile="$(OutDir)/"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName)_d.pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="TRUE"
|
||||
SuppressStartupBanner="TRUE"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="0"
|
||||
UseFullPaths="TRUE"
|
||||
TreatWChar_tAsBuiltInType="FALSE"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="ws2_32.lib zlib.lib"
|
||||
OutputFile="$(OutDir)/$(ProjectName)_d.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32,..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport,..\..\..\..\..\..\external\3rd\library\zlib\lib\win32"
|
||||
IgnoreDefaultLibraryNames="libcmt,libc"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/$(ProjectName)_d.pdb"
|
||||
SubSystem="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Optimized|Win32"
|
||||
OutputDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="3"
|
||||
InlineFunctionExpansion="1"
|
||||
EnableIntrinsicFunctions="TRUE"
|
||||
FavorSizeOrSpeed="1"
|
||||
OmitFramePointers="FALSE"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public,..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public,..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public,..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public,..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public,..\..\..\..\..\..\engine\shared\library\sharedThread\include\public,..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\..\..\..\..\external\3rd\library\blat194\src\win32,..\..\include\public"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
RuntimeLibrary="1"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
ForceConformanceInForLoopScope="TRUE"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="3"
|
||||
PrecompiledHeaderThrough="CrashReporter\FirstCrashReporter.h"
|
||||
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
|
||||
AssemblerListingLocation="$(OutDir)/"
|
||||
ObjectFile="$(OutDir)/"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName)_o.pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="TRUE"
|
||||
SuppressStartupBanner="TRUE"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="0"
|
||||
UseFullPaths="TRUE"
|
||||
TreatWChar_tAsBuiltInType="FALSE"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="ws2_32.lib zlib.lib"
|
||||
OutputFile="$(OutDir)/$(ProjectName)_o.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32,..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport,..\..\..\..\..\..\external\3rd\library\zlib\lib\win32"
|
||||
IgnoreDefaultLibraryNames="libcmt,libc"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/$(ProjectName)_o.pdb"
|
||||
SubSystem="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
EnableIntrinsicFunctions="TRUE"
|
||||
FavorSizeOrSpeed="1"
|
||||
OmitFramePointers="TRUE"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public,..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public,..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public,..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public,..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public,..\..\..\..\..\..\engine\shared\library\sharedThread\include\public,..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\..\..\..\..\external\3rd\library\blat194\src\win32,..\..\include\public"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE"
|
||||
StringPooling="TRUE"
|
||||
RuntimeLibrary="0"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
ForceConformanceInForLoopScope="TRUE"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="3"
|
||||
PrecompiledHeaderThrough="CrashReporter\FirstCrashReporter.h"
|
||||
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
|
||||
AssemblerListingLocation="$(OutDir)/"
|
||||
ObjectFile="$(OutDir)/"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName)_r.pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="TRUE"
|
||||
SuppressStartupBanner="TRUE"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="0"
|
||||
UseFullPaths="TRUE"
|
||||
TreatWChar_tAsBuiltInType="FALSE"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="ws2_32.lib zlib.lib"
|
||||
OutputFile="$(OutDir)/$(ProjectName)_r.exe"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32,..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport,..\..\..\..\..\..\external\3rd\library\zlib\lib\win32"
|
||||
IgnoreDefaultLibraryNames="libc"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/$(ProjectName)_r.pdb"
|
||||
SubSystem="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;rc"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\FirstCrashReporter.cpp"
|
||||
>
|
||||
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\main.cpp"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="def;h;hpp;inl"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\FirstCrashReporter.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\resource.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Template Files"
|
||||
Filter="template"
|
||||
>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,207 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{7927E450-9A0C-46B3-ABF3-34384D6F54CD}</ProjectGuid>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</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" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</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" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</OutDir>
|
||||
<IntDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</OutDir>
|
||||
<IntDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</OutDir>
|
||||
<IntDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\blat194\src\win32;..\..\include\public;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderFile>CrashReporter\FirstCrashReporter.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>$(OutDir)</AssemblerListingLocation>
|
||||
<ObjectFileName>$(OutDir)</ObjectFileName>
|
||||
<ProgramDataBaseFileName>$(OutDir)$(ProjectName)_d.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>ws2_32.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)$(ProjectName)_d.exe</OutputFile>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libcmt;libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>$(OutDir)$(ProjectName)_d.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
</Link>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Full</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||||
<OmitFramePointers>false</OmitFramePointers>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\blat194\src\win32;..\..\include\public;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderFile>CrashReporter\FirstCrashReporter.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>$(OutDir)</AssemblerListingLocation>
|
||||
<ObjectFileName>$(OutDir)</ObjectFileName>
|
||||
<ProgramDataBaseFileName>$(OutDir)$(ProjectName)_o.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>ws2_32.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)$(ProjectName)_o.exe</OutputFile>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libcmt;libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>$(OutDir)$(ProjectName)_o.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
</Link>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||||
<OmitFramePointers>true</OmitFramePointers>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\blat194\src\win32;..\..\include\public;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderFile>CrashReporter\FirstCrashReporter.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>$(OutDir)</AssemblerListingLocation>
|
||||
<ObjectFileName>$(OutDir)</ObjectFileName>
|
||||
<ProgramDataBaseFileName>$(OutDir)$(ProjectName)_r.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>ws2_32.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)$(ProjectName)_r.exe</OutputFile>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>$(OutDir)$(ProjectName)_r.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
</Link>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\src\win32\FirstCrashReporter.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\win32\main.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\src\win32\FirstCrashReporter.h" />
|
||||
<ClInclude Include="..\..\src\win32\resource.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1 @@
|
||||
libc
|
||||
@@ -0,0 +1 @@
|
||||
libcmt
|
||||
@@ -0,0 +1 @@
|
||||
libcmt
|
||||
@@ -0,0 +1,9 @@
|
||||
../../../../../../engine/client/library/clientBugReporting/include/public
|
||||
../../../../../../engine/shared/library/sharedDebug/include/public
|
||||
../../../../../../engine/shared/library/sharedFoundation/include/public
|
||||
../../../../../../engine/shared/library/sharedFoundationTypes/include/public
|
||||
../../../../../../engine/shared/library/sharedMemoryManager/include/public
|
||||
../../../../../../engine/shared/library/sharedThread/include/public
|
||||
../../../../../../external/3rd/library/stlport453/stlport
|
||||
../../../../../../external/3rd/library/blat194/src/win32
|
||||
../../include/public
|
||||
@@ -0,0 +1 @@
|
||||
ws2_32.lib zlib.lib
|
||||
@@ -0,0 +1,3 @@
|
||||
../../../../../../external/3rd/library/stlport453/lib/win32
|
||||
../../../../../../external/3rd/library/regex/libs/regex/build/vc6-stlport
|
||||
../../../../../../external/3rd/library/zlib/lib/win32
|
||||
@@ -0,0 +1,3 @@
|
||||
console
|
||||
copyDev
|
||||
debugInline
|
||||
@@ -0,0 +1,358 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="DebugWindow"
|
||||
ProjectGUID="{34FA8B34-C129-4D36-A67B-B1153A5CB366}"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory=".\../../../../../../compile/win32/debugWindow/Debug"
|
||||
IntermediateDirectory=".\../../../../../../compile/win32/debugWindow/Debug"
|
||||
ConfigurationType="2"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
MkTypLibCompatible="true"
|
||||
SuppressStartupBanner="true"
|
||||
TargetEnvironment="1"
|
||||
TypeLibraryName=".\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;DEBUGWINDOW_EXPORTS"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="1"
|
||||
TreatWChar_tAsBuiltInType="false"
|
||||
PrecompiledHeaderFile=".\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.pch"
|
||||
AssemblerListingLocation=".\../../../../../../compile/win32/debugWindow/Debug/"
|
||||
ObjectFile=".\../../../../../../compile/win32/debugWindow/Debug/"
|
||||
ProgramDataBaseFileName=".\../../../../../../compile/win32/debugWindow/Debug/"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
UseFullPaths="true"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
IgnoreImportLibrary="true"
|
||||
OutputFile=".\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.dll"
|
||||
LinkIncremental="2"
|
||||
SuppressStartupBanner="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile=".\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.pdb"
|
||||
BaseAddress="0x61B00000"
|
||||
ImportLibrary=".\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.lib"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
SuppressStartupBanner="true"
|
||||
OutputFile=".\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.bsc"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory=".\../../../../../../compile/win32/debugWindow/Release"
|
||||
IntermediateDirectory=".\../../../../../../compile/win32/debugWindow/Release"
|
||||
ConfigurationType="2"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
MkTypLibCompatible="true"
|
||||
SuppressStartupBanner="true"
|
||||
TargetEnvironment="1"
|
||||
TypeLibraryName=".\../../../../../../compile/win32/debugWindow/Release/DebugWindow.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;DEBUGWINDOW_EXPORTS"
|
||||
StringPooling="true"
|
||||
RuntimeLibrary="0"
|
||||
EnableFunctionLevelLinking="true"
|
||||
TreatWChar_tAsBuiltInType="false"
|
||||
PrecompiledHeaderFile=".\../../../../../../compile/win32/debugWindow/Release/DebugWindow.pch"
|
||||
AssemblerListingLocation=".\../../../../../../compile/win32/debugWindow/Release/"
|
||||
ObjectFile=".\../../../../../../compile/win32/debugWindow/Release/"
|
||||
ProgramDataBaseFileName=".\../../../../../../compile/win32/debugWindow/Release/"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
UseFullPaths="true"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
IgnoreImportLibrary="true"
|
||||
OutputFile=".\../../../../../../compile/win32/debugWindow/Release/DebugWindow.dll"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="true"
|
||||
ProgramDatabaseFile=".\../../../../../../compile/win32/debugWindow/Release/DebugWindow.pdb"
|
||||
BaseAddress="0x61B00000"
|
||||
ImportLibrary=".\../../../../../../compile/win32/debugWindow/Release/DebugWindow.lib"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
SuppressStartupBanner="true"
|
||||
OutputFile=".\../../../../../../compile/win32/debugWindow/Release/DebugWindow.bsc"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Optimized|Win32"
|
||||
OutputDirectory=".\../../../../../../compile/win32/debugWindow/Optimized"
|
||||
IntermediateDirectory=".\../../../../../../compile/win32/debugWindow/Optimized"
|
||||
ConfigurationType="2"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
MkTypLibCompatible="true"
|
||||
SuppressStartupBanner="true"
|
||||
TargetEnvironment="1"
|
||||
TypeLibraryName=".\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;DEBUGWINDOW_EXPORTS"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="1"
|
||||
PrecompiledHeaderFile=".\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.pch"
|
||||
AssemblerListingLocation=".\../../../../../../compile/win32/debugWindow/Optimized/"
|
||||
ObjectFile=".\../../../../../../compile/win32/debugWindow/Optimized/"
|
||||
ProgramDataBaseFileName=".\../../../../../../compile/win32/debugWindow/Optimized/"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
IgnoreImportLibrary="true"
|
||||
OutputFile=".\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.dll"
|
||||
LinkIncremental="2"
|
||||
SuppressStartupBanner="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile=".\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.pdb"
|
||||
BaseAddress="0x61B00000"
|
||||
ImportLibrary=".\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.lib"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
SuppressStartupBanner="true"
|
||||
OutputFile=".\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.bsc"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\DebugWindow.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl"
|
||||
>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,209 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{34FA8B34-C129-4D36-A67B-B1153A5CB366}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>.\../../../../../../compile/win32/debugWindow/Debug\</OutDir>
|
||||
<IntDir>.\../../../../../../compile/win32/debugWindow/Debug\</IntDir>
|
||||
<IgnoreImportLibrary>true</IgnoreImportLibrary>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>.\../../../../../../compile/win32/debugWindow/Release\</OutDir>
|
||||
<IntDir>.\../../../../../../compile/win32/debugWindow/Release\</IntDir>
|
||||
<IgnoreImportLibrary>true</IgnoreImportLibrary>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>.\../../../../../../compile/win32/debugWindow/Optimized\</OutDir>
|
||||
<IntDir>.\../../../../../../compile/win32/debugWindow/Optimized\</IntDir>
|
||||
<IgnoreImportLibrary>true</IgnoreImportLibrary>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;DEBUGWINDOW_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
<PrecompiledHeaderOutputFile>.\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\../../../../../../compile/win32/debugWindow/Debug/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\../../../../../../compile/win32/debugWindow/Debug/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\../../../../../../compile/win32/debugWindow/Debug/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<OutputFile>.\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>.\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.pdb</ProgramDatabaseFile>
|
||||
<BaseAddress>0x61B00000</BaseAddress>
|
||||
<ImportLibrary>.\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\../../../../../../compile/win32/debugWindow/Release/DebugWindow.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;DEBUGWINDOW_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
<PrecompiledHeaderOutputFile>.\../../../../../../compile/win32/debugWindow/Release/DebugWindow.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\../../../../../../compile/win32/debugWindow/Release/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\../../../../../../compile/win32/debugWindow/Release/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\../../../../../../compile/win32/debugWindow/Release/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<OutputFile>.\../../../../../../compile/win32/debugWindow/Release/DebugWindow.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<ProgramDatabaseFile>.\../../../../../../compile/win32/debugWindow/Release/DebugWindow.pdb</ProgramDatabaseFile>
|
||||
<BaseAddress>0x61B00000</BaseAddress>
|
||||
<ImportLibrary>.\../../../../../../compile/win32/debugWindow/Release/DebugWindow.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\../../../../../../compile/win32/debugWindow/Release/DebugWindow.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;DEBUGWINDOW_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeaderOutputFile>.\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\../../../../../../compile/win32/debugWindow/Optimized/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\../../../../../../compile/win32/debugWindow/Optimized/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\../../../../../../compile/win32/debugWindow/Optimized/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<OutputFile>.\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>.\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.pdb</ProgramDatabaseFile>
|
||||
<BaseAddress>0x61B00000</BaseAddress>
|
||||
<ImportLibrary>.\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\src\win32\DebugWindow.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{E89A79A9-8488-4D42-BF88-B9833F5607C0}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>.\..\..\..\..\..\..\compile\win32\Direct3d9\Debug\</OutDir>
|
||||
<IntDir>.\..\..\..\..\..\..\compile\win32\Direct3d9\Debug\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<PreBuildEventUseInBuild>false</PreBuildEventUseInBuild>
|
||||
<PostBuildEventUseInBuild>false</PostBuildEventUseInBuild>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>.\..\..\..\..\..\..\compile\win32\Direct3d9\Release\</OutDir>
|
||||
<IntDir>.\..\..\..\..\..\..\compile\win32\Direct3d9\Release\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>.\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized\</OutDir>
|
||||
<IntDir>.\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<PostBuildEventUseInBuild>false</PostBuildEventUseInBuild>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/Direct3d9.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_DEBUG;DEBUG_LEVEL=2;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;FFP;VSPS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>FirstDirect3d9.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/Direct3d9.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\..\..\..\..\..\compile\win32\Direct3d9\Debug\gl05_d.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libc; libcp;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<DelayLoadDLLs>DllExport.dll;%(DelayLoadDLLs)</DelayLoadDLLs>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>.\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/gl05_d.pdb</ProgramDatabaseFile>
|
||||
<BaseAddress>0x62A00000</BaseAddress>
|
||||
<ImportLibrary>.\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/gl05_d.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<AdditionalOptions>/SAFESEH:NO %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/Direct3d9.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
<PostBuildEvent>
|
||||
<Message>Copy debug dll</Message>
|
||||
<Command>copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl05_d.dll</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\..\..\..\..\..\..\compile\win32\Direct3d9\Release/Direct3d9.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>NDEBUG;DEBUG_LEVEL=0;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;FFP;VSPS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>FirstDirect3d9.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9\Release/Direct3d9.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\..\..\..\..\..\..\compile\win32\Direct3d9\Release/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9\Release/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9\Release/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\..\..\..\..\..\compile\win32\Direct3d9\Release\gl05_r.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libc; libcp;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<DelayLoadDLLs>DllExport.dll;%(DelayLoadDLLs)</DelayLoadDLLs>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>.\..\..\..\..\..\..\compile\win32\Direct3d9\Release/gl05_r.pdb</ProgramDatabaseFile>
|
||||
<BaseAddress>0x62A00000</BaseAddress>
|
||||
<ImportLibrary>.\..\..\..\..\..\..\compile\win32\Direct3d9\Release/gl05_r.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9\Release/Direct3d9.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
<PostBuildEvent>
|
||||
<Message>Copy production dll</Message>
|
||||
<Command>copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl05_r.dll</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/Direct3d9.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_DEBUG;DEBUG_LEVEL=1;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;FFP;VSPS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>FirstDirect3d9.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/Direct3d9.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\..\..\..\..\..\compile\win32\Direct3d9\Optimized\gl05_o.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libc; libcp;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<DelayLoadDLLs>DllExport.dll;%(DelayLoadDLLs)</DelayLoadDLLs>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>.\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/gl05_o.pdb</ProgramDatabaseFile>
|
||||
<BaseAddress>0x62A00000</BaseAddress>
|
||||
<ImportLibrary>.\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/gl05_o.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<AdditionalOptions>/SAFESEH:NO %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/Direct3d9.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
<PostBuildEvent>
|
||||
<Message>Copy optimized dll</Message>
|
||||
<Command>copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl05_o.dll</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\src\shared\MemoryManagerHook.cpp" />
|
||||
<ClCompile Include="..\..\src\shared\SetupDll.cpp" />
|
||||
<ClCompile Include="..\..\src\shared\WriteTga.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\ConfigDirect3d9.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_DynamicIndexBufferData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_DynamicVertexBufferData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_LightManager.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_Metrics.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_PixelShaderProgramData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_RenderTarget.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_ShaderImplementationData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_StateCache.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_StaticIndexBufferData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_StaticShaderData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_StaticVertexBufferData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_TextureData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_VertexBufferDescriptorMap.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_VertexBufferVectorData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_VertexDeclarationMap.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_VertexShaderData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\FirstDirect3d9.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\src\shared\MemoryManagerHook.h" />
|
||||
<ClInclude Include="..\..\src\shared\PaddedVector.h" />
|
||||
<ClInclude Include="..\..\src\win32\ConfigDirect3d9.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_DynamicIndexBufferData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_DynamicVertexBufferData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_LightManager.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_Metrics.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_PixelShaderConstantRegisters.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_PixelShaderProgramData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_RenderTarget.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_ShaderImplementationData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_StateCache.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_StaticIndexBufferData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_StaticShaderData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_StaticVertexBufferData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_TextureData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexBufferDescriptorMap.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexBufferVectorData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexDeclarationMap.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexShaderConstantRegisters.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexShaderData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexShaderVertexRegisters.h" />
|
||||
<ClInclude Include="..\..\src\win32\FirstDirect3d9.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\DllExport\build\win32\DllExport.vcxproj">
|
||||
<Project>{78041480-c2c5-42a1-a566-c57bc3100bbf}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,308 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{2889F119-79C4-4EA7-893A-9E0BD5F871C8}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug\</OutDir>
|
||||
<IntDir>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<PreBuildEventUseInBuild>false</PreBuildEventUseInBuild>
|
||||
<PostBuildEventUseInBuild>false</PostBuildEventUseInBuild>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized\</OutDir>
|
||||
<IntDir>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<PostBuildEventUseInBuild>false</PostBuildEventUseInBuild>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release\</OutDir>
|
||||
<IntDir>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/Direct3d9_ffp.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_DEBUG;DEBUG_LEVEL=2;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;FFP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>FirstDirect3d9.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/Direct3d9_ffp.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug\gl06_d.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libc; libcp;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<DelayLoadDLLs>DllExport.dll;%(DelayLoadDLLs)</DelayLoadDLLs>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/gl06_d.pdb</ProgramDatabaseFile>
|
||||
<BaseAddress>0x62A00000</BaseAddress>
|
||||
<ImportLibrary>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/gl06_d.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<AdditionalOptions>/SAFESEH:NO %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/Direct3d9_ffp.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
<PostBuildEvent>
|
||||
<Message>Copy debug dll</Message>
|
||||
<Command>copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl06_d.dll</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/Direct3d9_ffp.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_DEBUG;DEBUG_LEVEL=1;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;FFP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>FirstDirect3d9.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/Direct3d9_ffp.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized\gl06_o.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libc; libcp;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<DelayLoadDLLs>DllExport.dll;%(DelayLoadDLLs)</DelayLoadDLLs>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/gl06_o.pdb</ProgramDatabaseFile>
|
||||
<BaseAddress>0x62A00000</BaseAddress>
|
||||
<ImportLibrary>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/gl06_o.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<AdditionalOptions>/SAFESEH:NO %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/Direct3d9_ffp.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
<PostBuildEvent>
|
||||
<Message>Copy optimized dll</Message>
|
||||
<Command>copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl06_o.dll</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/Direct3d9_ffp.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>NDEBUG;DEBUG_LEVEL=0;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;FFP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>FirstDirect3d9.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/Direct3d9_ffp.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release\gl06_r.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libc; libcp;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<DelayLoadDLLs>DllExport.dll;%(DelayLoadDLLs)</DelayLoadDLLs>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/gl06_r.pdb</ProgramDatabaseFile>
|
||||
<BaseAddress>0x62A00000</BaseAddress>
|
||||
<ImportLibrary>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/gl06_r.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/Direct3d9_ffp.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
<PostBuildEvent>
|
||||
<Message>Copy production dll</Message>
|
||||
<Command>copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl06_r.dll</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\src\shared\MemoryManagerHook.cpp" />
|
||||
<ClCompile Include="..\..\src\shared\SetupDll.cpp" />
|
||||
<ClCompile Include="..\..\src\shared\WriteTga.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\ConfigDirect3d9.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_DynamicIndexBufferData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_DynamicVertexBufferData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_LightManager.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_Metrics.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_PixelShaderProgramData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_RenderTarget.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_ShaderImplementationData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_StateCache.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_StaticIndexBufferData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_StaticShaderData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_StaticVertexBufferData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_TextureData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_VertexBufferDescriptorMap.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_VertexBufferVectorData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_VertexDeclarationMap.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_VertexShaderData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\FirstDirect3d9.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\src\shared\MemoryManagerHook.h" />
|
||||
<ClInclude Include="..\..\src\shared\PaddedVector.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_DynamicIndexBufferData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_DynamicVertexBufferData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_LightManager.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_Metrics.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_PixelShaderConstantRegisters.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_PixelShaderProgramData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_RenderTarget.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_ShaderImplementationData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_StateCache.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_StaticIndexBufferData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_StaticShaderData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_StaticVertexBufferData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_TextureData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexBufferDescriptorMap.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexBufferVectorData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexDeclarationMap.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexShaderConstantRegisters.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexShaderData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexShaderVertexRegisters.h" />
|
||||
<ClInclude Include="..\..\src\win32\FirstDirect3d9.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\DllExport\build\win32\DllExport.vcxproj">
|
||||
<Project>{78041480-c2c5-42a1-a566-c57bc3100bbf}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{CF3B1EE2-D965-44E1-9464-01297964F2CB}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug\</OutDir>
|
||||
<IntDir>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<PreBuildEventUseInBuild>false</PreBuildEventUseInBuild>
|
||||
<PostBuildEventUseInBuild>false</PostBuildEventUseInBuild>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized\</OutDir>
|
||||
<IntDir>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<PostBuildEventUseInBuild>false</PostBuildEventUseInBuild>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release\</OutDir>
|
||||
<IntDir>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/Direct3d9_vsps.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_DEBUG;DEBUG_LEVEL=2;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;VSPS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>FirstDirect3d9.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/Direct3d9_vsps.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug\gl07_d.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libc; libcp;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<DelayLoadDLLs>DllExport.dll;%(DelayLoadDLLs)</DelayLoadDLLs>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/gl07_d.pdb</ProgramDatabaseFile>
|
||||
<BaseAddress>0x62A00000</BaseAddress>
|
||||
<ImportLibrary>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/gl07_d.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<AdditionalOptions>/SAFESEH:NO %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/Direct3d9_vsps.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
<PostBuildEvent>
|
||||
<Message>Copy debug dll</Message>
|
||||
<Command>copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl07_d.dll</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/Direct3d9_vsps.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_DEBUG;DEBUG_LEVEL=1;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;VSPS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>FirstDirect3d9.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/Direct3d9_vsps.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized\gl07_o.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libc; libcp;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<DelayLoadDLLs>DllExport.dll;%(DelayLoadDLLs)</DelayLoadDLLs>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/gl07_o.pdb</ProgramDatabaseFile>
|
||||
<BaseAddress>0x62A00000</BaseAddress>
|
||||
<ImportLibrary>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/gl07_o.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<AdditionalOptions>/SAFESEH:NO %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/Direct3d9_vsps.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
<PostBuildEvent>
|
||||
<Message>Copy optimized dll</Message>
|
||||
<Command>copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl07_o.dll</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/Direct3d9_vsps.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>NDEBUG;DEBUG_LEVEL=0;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;VSPS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>FirstDirect3d9.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/Direct3d9_vsps.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release\gl07_r.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libc; libcp;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<DelayLoadDLLs>DllExport.dll;%(DelayLoadDLLs)</DelayLoadDLLs>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/gl07_r.pdb</ProgramDatabaseFile>
|
||||
<BaseAddress>0x62A00000</BaseAddress>
|
||||
<ImportLibrary>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/gl07_r.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/Direct3d9_vsps.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
<PostBuildEvent>
|
||||
<Message>Copy production dll</Message>
|
||||
<Command>copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl07_r.dll</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\src\shared\MemoryManagerHook.cpp" />
|
||||
<ClCompile Include="..\..\src\shared\SetupDll.cpp" />
|
||||
<ClCompile Include="..\..\src\shared\WriteTga.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\ConfigDirect3d9.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_DynamicIndexBufferData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_DynamicVertexBufferData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_LightManager.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_Metrics.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_PixelShaderProgramData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_RenderTarget.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_ShaderImplementationData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_StateCache.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_StaticIndexBufferData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_StaticShaderData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_StaticVertexBufferData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_TextureData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_VertexBufferDescriptorMap.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_VertexBufferVectorData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_VertexDeclarationMap.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\Direct3d9_VertexShaderData.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\FirstDirect3d9.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\src\shared\MemoryManagerHook.h" />
|
||||
<ClInclude Include="..\..\src\shared\PaddedVector.h" />
|
||||
<ClInclude Include="..\..\src\win32\ConfigDirect3d9.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_DynamicIndexBufferData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_DynamicVertexBufferData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_LightManager.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_Metrics.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_PixelShaderConstantRegisters.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_PixelShaderProgramData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_RenderTarget.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_ShaderImplementationData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_StateCache.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_StaticIndexBufferData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_StaticShaderData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_StaticVertexBufferData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_TextureData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexBufferDescriptorMap.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexBufferVectorData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexDeclarationMap.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexShaderConstantRegisters.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexShaderData.h" />
|
||||
<ClInclude Include="..\..\src\win32\Direct3d9_VertexShaderVertexRegisters.h" />
|
||||
<ClInclude Include="..\..\src\win32\FirstDirect3d9.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\DllExport\build\win32\DllExport.vcxproj">
|
||||
<Project>{78041480-c2c5-42a1-a566-c57bc3100bbf}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,370 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="DllExport"
|
||||
ProjectGUID="{78041480-C2C5-42A1-A566-C57BC3100BBF}"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Optimized|Win32"
|
||||
OutputDirectory=".\..\..\..\..\..\..\compile\win32\DllExport\Optimized"
|
||||
IntermediateDirectory=".\..\..\..\..\..\..\compile\win32\DllExport\Optimized"
|
||||
ConfigurationType="2"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
MkTypLibCompatible="true"
|
||||
SuppressStartupBanner="true"
|
||||
TargetEnvironment="1"
|
||||
TypeLibraryName=".\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\..\..\..\..\external\ours\library\fileInterface\include\public,..\..\..\..\..\shared\library\sharedDebug\include\public,..\..\..\..\..\shared\library\sharedFile\include\public,..\..\..\..\..\shared\library\sharedFoundation\include\public,..\..\..\..\..\shared\library\sharedFoundationTypes\include\public,..\..\..\..\..\shared\library\sharedImage\include\public,..\..\..\..\..\shared\library\sharedMath\include\public,..\..\..\..\..\shared\library\sharedMemoryManager\include\public,..\..\..\..\..\shared\library\sharedObject\include\public,..\..\..\..\..\shared\library\sharedSynchronization\include\public,..\..\..\..\library\clientGraphics\include\public"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;DIRECT3D8_EXPORTS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="1"
|
||||
RuntimeTypeInfo="true"
|
||||
PrecompiledHeaderFile=".\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.pch"
|
||||
AssemblerListingLocation=".\..\..\..\..\..\..\compile\win32\DllExport\Optimized/"
|
||||
ObjectFile=".\..\..\..\..\..\..\compile\win32\DllExport\Optimized/"
|
||||
ProgramDataBaseFileName=".\..\..\..\..\..\..\compile\win32\DllExport\Optimized/"
|
||||
WarningLevel="4"
|
||||
WarnAsError="true"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile=".\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.dll"
|
||||
LinkIncremental="2"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32"
|
||||
IgnoreDefaultLibraryNames="libc, libcp"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile=".\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.pdb"
|
||||
ImportLibrary=".\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.lib"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
SuppressStartupBanner="true"
|
||||
OutputFile=".\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.bsc"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory=".\..\..\..\..\..\..\compile\win32\DllExport\Release"
|
||||
IntermediateDirectory=".\..\..\..\..\..\..\compile\win32\DllExport\Release"
|
||||
ConfigurationType="2"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
MkTypLibCompatible="true"
|
||||
SuppressStartupBanner="true"
|
||||
TargetEnvironment="1"
|
||||
TypeLibraryName=".\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\..\..\..\..\external\ours\library\fileInterface\include\public,..\..\..\..\..\shared\library\sharedDebug\include\public,..\..\..\..\..\shared\library\sharedFile\include\public,..\..\..\..\..\shared\library\sharedFoundation\include\public,..\..\..\..\..\shared\library\sharedFoundationTypes\include\public,..\..\..\..\..\shared\library\sharedImage\include\public,..\..\..\..\..\shared\library\sharedMath\include\public,..\..\..\..\..\shared\library\sharedMemoryManager\include\public,..\..\..\..\..\shared\library\sharedObject\include\public,..\..\..\..\..\shared\library\sharedSynchronization\include\public,..\..\..\..\library\clientGraphics\include\public"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;DIRECT3D8_EXPORTS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1"
|
||||
StringPooling="true"
|
||||
RuntimeLibrary="0"
|
||||
EnableFunctionLevelLinking="true"
|
||||
TreatWChar_tAsBuiltInType="false"
|
||||
RuntimeTypeInfo="true"
|
||||
PrecompiledHeaderFile=".\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.pch"
|
||||
AssemblerListingLocation=".\..\..\..\..\..\..\compile\win32\DllExport\Release/"
|
||||
ObjectFile=".\..\..\..\..\..\..\compile\win32\DllExport\Release/"
|
||||
ProgramDataBaseFileName=".\..\..\..\..\..\..\compile\win32\DllExport\Release/"
|
||||
WarningLevel="4"
|
||||
WarnAsError="true"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
UseFullPaths="true"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile=".\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.dll"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32"
|
||||
ProgramDatabaseFile=".\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.pdb"
|
||||
ImportLibrary=".\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.lib"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
SuppressStartupBanner="true"
|
||||
OutputFile=".\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.bsc"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory=".\..\..\..\..\..\..\compile\win32\DllExport\Debug"
|
||||
IntermediateDirectory=".\..\..\..\..\..\..\compile\win32\DllExport\Debug"
|
||||
ConfigurationType="2"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
MkTypLibCompatible="true"
|
||||
SuppressStartupBanner="true"
|
||||
TargetEnvironment="1"
|
||||
TypeLibraryName=".\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
InlineFunctionExpansion="1"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\..\..\..\..\external\ours\library\fileInterface\include\public,..\..\..\..\..\shared\library\sharedDebug\include\public,..\..\..\..\..\shared\library\sharedFile\include\public,..\..\..\..\..\shared\library\sharedFoundation\include\public,..\..\..\..\..\shared\library\sharedFoundationTypes\include\public,..\..\..\..\..\shared\library\sharedImage\include\public,..\..\..\..\..\shared\library\sharedMath\include\public,..\..\..\..\..\shared\library\sharedMemoryManager\include\public,..\..\..\..\..\shared\library\sharedObject\include\public,..\..\..\..\..\shared\library\sharedSynchronization\include\public,..\..\..\..\library\clientGraphics\include\public"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;DIRECT3D8_EXPORTS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="1"
|
||||
TreatWChar_tAsBuiltInType="false"
|
||||
RuntimeTypeInfo="true"
|
||||
PrecompiledHeaderFile=".\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.pch"
|
||||
AssemblerListingLocation=".\..\..\..\..\..\..\compile\win32\DllExport\Debug/"
|
||||
ObjectFile=".\..\..\..\..\..\..\compile\win32\DllExport\Debug/"
|
||||
ProgramDataBaseFileName=".\..\..\..\..\..\..\compile\win32\DllExport\Debug/"
|
||||
WarningLevel="4"
|
||||
WarnAsError="true"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
UseFullPaths="true"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile=".\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.dll"
|
||||
LinkIncremental="2"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32"
|
||||
IgnoreDefaultLibraryNames="libc, libcp"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile=".\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.pdb"
|
||||
ImportLibrary=".\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.lib"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
SuppressStartupBanner="true"
|
||||
OutputFile=".\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.bsc"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\DllExport.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl"
|
||||
>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,218 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{78041480-C2C5-42A1-A566-C57BC3100BBF}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</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="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>.\..\..\..\..\..\..\compile\win32\DllExport\Optimized\</OutDir>
|
||||
<IntDir>.\..\..\..\..\..\..\compile\win32\DllExport\Optimized\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>.\..\..\..\..\..\..\compile\win32\DllExport\Release\</OutDir>
|
||||
<IntDir>.\..\..\..\..\..\..\compile\win32\DllExport\Release\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>.\..\..\..\..\..\..\compile\win32\DllExport\Debug\</OutDir>
|
||||
<IntDir>.\..\..\..\..\..\..\compile\win32\DllExport\Debug\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\library\clientGraphics\include\public;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;DIRECT3D8_EXPORTS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderOutputFile>.\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\..\..\..\..\..\..\compile\win32\DllExport\Optimized/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\..\..\..\..\..\..\compile\win32\DllExport\Optimized/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\..\..\..\..\..\..\compile\win32\DllExport\Optimized/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libc; libcp;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>.\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.pdb</ProgramDatabaseFile>
|
||||
<ImportLibrary>.\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\library\clientGraphics\include\public;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;DIRECT3D8_EXPORTS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderOutputFile>.\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\..\..\..\..\..\..\compile\win32\DllExport\Release/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\..\..\..\..\..\..\compile\win32\DllExport\Release/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\..\..\..\..\..\..\compile\win32\DllExport\Release/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ProgramDatabaseFile>.\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.pdb</ProgramDatabaseFile>
|
||||
<ImportLibrary>.\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.tlb</TypeLibraryName>
|
||||
<HeaderFileName />
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\library\clientGraphics\include\public;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;DIRECT3D8_EXPORTS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderOutputFile>.\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>.\..\..\..\..\..\..\compile\win32\DllExport\Debug/</AssemblerListingLocation>
|
||||
<ObjectFileName>.\..\..\..\..\..\..\compile\win32\DllExport\Debug/</ObjectFileName>
|
||||
<ProgramDataBaseFileName>.\..\..\..\..\..\..\compile\win32\DllExport\Debug/</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libc; libcp;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>.\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.pdb</ProgramDatabaseFile>
|
||||
<ImportLibrary>.\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.lib</ImportLibrary>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<OutputFile>.\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.bsc</OutputFile>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\src\win32\DllExport.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,717 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="LightningEditor"
|
||||
ProjectGUID="{944B3154-4DC7-4450-BE1E-BAE9D648D1DF}"
|
||||
Keyword="Win32Proj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
InlineFunctionExpansion="1"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\compile\win32\LightningEditor\Debug,..\..\..\..\..\..\engine\client\library\clientAnimation\include\public,..\..\..\..\..\..\engine\client\library\clientAudio\include\public,..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public,..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public,..\..\..\..\..\..\engine\client\library\clientGame\include\public,..\..\..\..\..\..\engine\client\library\clientGraphics\include\public,..\..\..\..\..\..\engine\client\library\clientObject\include\public,..\..\..\..\..\..\engine\client\library\clientParticle\include\public,..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public,..\..\..\..\..\..\engine\client\library\clientTerrain\include\public,..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public,..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public,..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public,..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public,..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public,..\..\..\..\..\..\engine\shared\library\sharedFile\include\public,..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public,..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public,..\..\..\..\..\..\engine\shared\library\sharedGame\include\public,..\..\..\..\..\..\engine\shared\library\sharedImage\include\public,..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public,..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public,..\..\..\..\..\..\engine\shared\library\sharedMath\include\public,..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public,..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public,..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public,..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public,..\..\..\..\..\..\engine\shared\library\sharedObject\include\public,..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public,..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public,..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public,..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public,..\..\..\..\..\..\engine\shared\library\sharedThread\include\public,..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public,..\..\..\..\..\..\engine\shared\library\sharedXml\include\public,..\..\..\..\..\..\external\3rd\library\directx9\include,..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public,..\..\..\..\..\..\external\3rd\library\miles\include,..\..\..\..\..\..\external\3rd\library\perforce\include,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include,..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\..\..\..\..\external\3rd\library\ui\include,..\..\..\..\..\..\external\3rd\library\libMozilla\include\public,..\..\..\..\..\..\external\ours\library\Unicode\include,..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public,..\..\..\..\..\..\external\ours\library\archive\include,..\..\..\..\..\..\external\ours\library\fileInterface\include\public,..\..\..\..\..\..\external\ours\library\localization\include,..\..\..\..\..\..\external\ours\library\localizationArchive\include\public,..\..\..\..\..\..\external\ours\library\singleton\include,..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public,..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="1"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
ForceConformanceInForLoopScope="TRUE"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="3"
|
||||
PrecompiledHeaderThrough="FirstLightningEditor.h"
|
||||
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
|
||||
AssemblerListingLocation="$(OutDir)/"
|
||||
ObjectFile="$(OutDir)/"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName)_d.pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="TRUE"
|
||||
SuppressStartupBanner="TRUE"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="0"
|
||||
UseFullPaths="TRUE"
|
||||
TreatWChar_tAsBuiltInType="FALSE"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="VideoCapture_debug.lib ImageCapture_debug.lib Smart_debug.lib SoeUtil_debug.lib ZlibUtil_debug.lib picn20md.lib qt-mt334.lib qtmain.lib Mss32.lib dpvs.lib ws2_32.lib dxguid.lib dsound.lib dinput8.lib oldnames.lib libpcre.a libclient.lib libsupp.lib librpc.lib libxml2-win32-release.lib winmm.lib mswsock.lib lgLcd.lib nspr4.lib plc4.lib profdirserviceprovider_s.lib xpcom.lib xul.lib vivoxSharedWrapper_release.lib"
|
||||
OutputFile="$(OutDir)/$(ProjectName)_d.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\miles\lib\win,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib,..\..\..\..\..\..\external\3rd\library\directx9\lib,..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86,..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib,..\..\..\..\..\..\external\3rd\library\perforce\lib\win32,..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib,..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32,..\..\..\..\..\..\external\3rd\library\lcdui\lib,..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release,..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib,..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32"
|
||||
IgnoreDefaultLibraryNames="libcmt,MSVCRTD,msvcrt,libc"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/$(ProjectName)_d.pdb"
|
||||
SubSystem="2"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Optimized|Win32"
|
||||
OutputDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="3"
|
||||
InlineFunctionExpansion="1"
|
||||
EnableIntrinsicFunctions="TRUE"
|
||||
FavorSizeOrSpeed="1"
|
||||
OmitFramePointers="FALSE"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\compile\win32\LightningEditor\Optimized,..\..\..\..\..\..\engine\client\library\clientAnimation\include\public,..\..\..\..\..\..\engine\client\library\clientAudio\include\public,..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public,..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public,..\..\..\..\..\..\engine\client\library\clientGame\include\public,..\..\..\..\..\..\engine\client\library\clientGraphics\include\public,..\..\..\..\..\..\engine\client\library\clientObject\include\public,..\..\..\..\..\..\engine\client\library\clientParticle\include\public,..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public,..\..\..\..\..\..\engine\client\library\clientTerrain\include\public,..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public,..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public,..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public,..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public,..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public,..\..\..\..\..\..\engine\shared\library\sharedFile\include\public,..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public,..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public,..\..\..\..\..\..\engine\shared\library\sharedGame\include\public,..\..\..\..\..\..\engine\shared\library\sharedImage\include\public,..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public,..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public,..\..\..\..\..\..\engine\shared\library\sharedMath\include\public,..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public,..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public,..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public,..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public,..\..\..\..\..\..\engine\shared\library\sharedObject\include\public,..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public,..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public,..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public,..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public,..\..\..\..\..\..\engine\shared\library\sharedThread\include\public,..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public,..\..\..\..\..\..\engine\shared\library\sharedXml\include\public,..\..\..\..\..\..\external\3rd\library\directx9\include,..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public,..\..\..\..\..\..\external\3rd\library\miles\include,..\..\..\..\..\..\external\3rd\library\perforce\include,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include,..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\..\..\..\..\external\3rd\library\ui\include,..\..\..\..\..\..\external\3rd\library\libMozilla\include\public,..\..\..\..\..\..\external\ours\library\Unicode\include,..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public,..\..\..\..\..\..\external\ours\library\archive\include,..\..\..\..\..\..\external\ours\library\fileInterface\include\public,..\..\..\..\..\..\external\ours\library\localization\include,..\..\..\..\..\..\external\ours\library\localizationArchive\include\public,..\..\..\..\..\..\external\ours\library\singleton\include,..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public,..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT"
|
||||
MinimalRebuild="TRUE"
|
||||
RuntimeLibrary="1"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
ForceConformanceInForLoopScope="TRUE"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="3"
|
||||
PrecompiledHeaderThrough="FirstLightningEditor.h"
|
||||
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
|
||||
AssemblerListingLocation="$(OutDir)/"
|
||||
ObjectFile="$(OutDir)/"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName)_o.pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="TRUE"
|
||||
SuppressStartupBanner="TRUE"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="0"
|
||||
UseFullPaths="TRUE"
|
||||
TreatWChar_tAsBuiltInType="FALSE"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="VideoCapture_release.lib ImageCapture_release.lib Smart_release.lib SoeUtil_release.lib ZlibUtil_release.lib picn20m.lib qt-mt334.lib qtmain.lib Mss32.lib dpvs.lib ws2_32.lib dxguid.lib dsound.lib dinput8.lib oldnames.lib libpcre.a libclient.lib libsupp.lib librpc.lib libxml2-win32-release.lib winmm.lib mswsock.lib lgLcd.lib nspr4.lib plc4.lib profdirserviceprovider_s.lib xpcom.lib xul.lib vivoxSharedWrapper_release.lib"
|
||||
OutputFile="$(OutDir)/$(ProjectName)_o.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\miles\lib\win,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib,..\..\..\..\..\..\external\3rd\library\directx9\lib,..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86,..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib,..\..\..\..\..\..\external\3rd\library\perforce\lib\win32,..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib,..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32,..\..\..\..\..\..\external\3rd\library\lcdui\lib,..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release,..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib,..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32"
|
||||
IgnoreDefaultLibraryNames="libcmt,MSVCRTD,msvcrt,libc"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/$(ProjectName)_o.pdb"
|
||||
SubSystem="2"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="..\..\..\..\..\..\compile\win32\$(ProjectName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
EnableIntrinsicFunctions="TRUE"
|
||||
FavorSizeOrSpeed="1"
|
||||
OmitFramePointers="TRUE"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\..\compile\win32\LightningEditor\Release,..\..\..\..\..\..\engine\client\library\clientAnimation\include\public,..\..\..\..\..\..\engine\client\library\clientAudio\include\public,..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public,..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public,..\..\..\..\..\..\engine\client\library\clientGame\include\public,..\..\..\..\..\..\engine\client\library\clientGraphics\include\public,..\..\..\..\..\..\engine\client\library\clientObject\include\public,..\..\..\..\..\..\engine\client\library\clientParticle\include\public,..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public,..\..\..\..\..\..\engine\client\library\clientTerrain\include\public,..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public,..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public,..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public,..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public,..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public,..\..\..\..\..\..\engine\shared\library\sharedFile\include\public,..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public,..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public,..\..\..\..\..\..\engine\shared\library\sharedGame\include\public,..\..\..\..\..\..\engine\shared\library\sharedImage\include\public,..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public,..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public,..\..\..\..\..\..\engine\shared\library\sharedMath\include\public,..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public,..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public,..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public,..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public,..\..\..\..\..\..\engine\shared\library\sharedObject\include\public,..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public,..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public,..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public,..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public,..\..\..\..\..\..\engine\shared\library\sharedThread\include\public,..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public,..\..\..\..\..\..\engine\shared\library\sharedXml\include\public,..\..\..\..\..\..\external\3rd\library\directx9\include,..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public,..\..\..\..\..\..\external\3rd\library\miles\include,..\..\..\..\..\..\external\3rd\library\perforce\include,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include,..\..\..\..\..\..\external\3rd\library\stlport453\stlport,..\..\..\..\..\..\external\3rd\library\ui\include,..\..\..\..\..\..\external\3rd\library\libMozilla\include\public,..\..\..\..\..\..\external\ours\library\Unicode\include,..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public,..\..\..\..\..\..\external\ours\library\archive\include,..\..\..\..\..\..\external\ours\library\fileInterface\include\public,..\..\..\..\..\..\external\ours\library\localization\include,..\..\..\..\..\..\external\ours\library\localizationArchive\include\public,..\..\..\..\..\..\external\ours\library\singleton\include,..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public,..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT"
|
||||
StringPooling="TRUE"
|
||||
RuntimeLibrary="0"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
ForceConformanceInForLoopScope="TRUE"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="3"
|
||||
PrecompiledHeaderThrough="FirstLightningEditor.h"
|
||||
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
|
||||
AssemblerListingLocation="$(OutDir)/"
|
||||
ObjectFile="$(OutDir)/"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName)_r.pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="TRUE"
|
||||
SuppressStartupBanner="TRUE"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="0"
|
||||
UseFullPaths="TRUE"
|
||||
TreatWChar_tAsBuiltInType="FALSE"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="VideoCapture_release.lib ImageCapture_release.lib Smart_release.lib SoeUtil_release.lib ZlibUtil_release.lib picn20m.lib qt-mt334.lib qtmain.lib Mss32.lib dpvs.lib ws2_32.lib dxguid.lib dsound.lib dinput8.lib oldnames.lib libpcre.a libclient.lib libsupp.lib librpc.lib libxml2-win32-release.lib winmm.lib mswsock.lib lgLcd.lib nspr4.lib plc4.lib profdirserviceprovider_s.lib xpcom.lib xul.lib vivoxSharedWrapper_release.lib"
|
||||
OutputFile="$(OutDir)/$(ProjectName)_r.exe"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\..\external\3rd\library\miles\lib\win,..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib,..\..\..\..\..\..\external\3rd\library\directx9\lib,..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86,..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib,..\..\..\..\..\..\external\3rd\library\perforce\lib\win32,..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib,..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32,..\..\..\..\..\..\external\3rd\library\lcdui\lib,..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release,..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib,..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32,..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32"
|
||||
IgnoreDefaultLibraryNames="msvcrt,libc"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/$(ProjectName)_r.pdb"
|
||||
SubSystem="2"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;rc"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\FirstLightningEditor.cpp"
|
||||
>
|
||||
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\LightningEditorGameWidget.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\LightningEditorIoWin.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\MainWindow.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\QtUtility.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\main.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="def;h;hpp;inl"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\FirstLightningEditor.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\LightningEditorGameWidget.h"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="moc $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i $(InputPath) -o $(TargetDir)$(InputName).moc"
|
||||
Outputs="$(TargetDir)$(InputName).moc"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="moc $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i $(InputPath) -o $(TargetDir)$(InputName).moc"
|
||||
Outputs="$(TargetDir)$(InputName).moc"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="moc $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i $(InputPath) -o $(TargetDir)$(InputName).moc"
|
||||
Outputs="$(TargetDir)$(InputName).moc"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\LightningEditorIoWin.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\MainWindow.h"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="moc $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i $(InputPath) -o $(TargetDir)$(InputName).moc"
|
||||
Outputs="$(TargetDir)$(InputName).moc"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="moc $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i $(InputPath) -o $(TargetDir)$(InputName).moc"
|
||||
Outputs="$(TargetDir)$(InputName).moc"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="moc $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i $(InputPath) -o $(TargetDir)$(InputName).moc"
|
||||
Outputs="$(TargetDir)$(InputName).moc"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\win32\QtUtility.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Ui Files"
|
||||
Filter="ui"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\ui\BaseMainWindow.ui"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="ui $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName)_d.cpp -impl $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)$(InputName).h >> $(TargetDir)$(InputName)_d.cpp"
|
||||
Outputs="$(TargetDir)$(InputName).h;$(TargetDir)$(InputName)_d.cpp"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="ui $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName)_o.cpp -impl $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)$(InputName).h >> $(TargetDir)$(InputName)_o.cpp"
|
||||
Outputs="$(TargetDir)$(InputName).h;$(TargetDir)$(InputName)_o.cpp"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="ui $(InputName)"
|
||||
CommandLine="..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)$(InputName)_r.cpp -impl $(TargetDir)$(InputName).h $(InputPath)
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)$(InputName).h >> $(TargetDir)$(InputName)_r.cpp"
|
||||
Outputs="$(TargetDir)$(InputName).h;$(TargetDir)$(InputName)_r.cpp"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Ui Generated Files"
|
||||
Filter=""
|
||||
>
|
||||
<Filter
|
||||
Name="Debug"
|
||||
Filter=""
|
||||
>
|
||||
<Filter
|
||||
Name="Debug Ui Source Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\LightningEditor\Debug\BaseMainWindow_d.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Debug Ui Header Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\LightningEditor\Debug\BaseMainWindow.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Optimized"
|
||||
Filter=""
|
||||
>
|
||||
<Filter
|
||||
Name="Optimized Ui Source Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\LightningEditor\Optimized\BaseMainWindow_o.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Optimized Ui Header Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\LightningEditor\Optimized\BaseMainWindow.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Release"
|
||||
Filter=""
|
||||
>
|
||||
<Filter
|
||||
Name="Release Ui Source Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\LightningEditor\Release\BaseMainWindow_r.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Optimized|Win32"
|
||||
ExcludedFromBuild="TRUE"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Release Ui Header Files"
|
||||
Filter=""
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\..\compile\win32\LightningEditor\Release\BaseMainWindow.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
</Filter>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Template Files"
|
||||
Filter="template"
|
||||
>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,548 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.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="Optimized|Win32">
|
||||
<Configuration>Optimized</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{944B3154-4DC7-4450-BE1E-BAE9D648D1DF}</ProjectGuid>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</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" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</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" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</OutDir>
|
||||
<IntDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<OutDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</OutDir>
|
||||
<IntDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</OutDir>
|
||||
<IntDir>..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\compile\win32\LightningEditor\Debug;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderFile>FirstLightningEditor.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>$(OutDir)</AssemblerListingLocation>
|
||||
<ObjectFileName>$(OutDir)</ObjectFileName>
|
||||
<ProgramDataBaseFileName>$(OutDir)$(ProjectName)_d.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>VideoCapture_debug.lib;ImageCapture_debug.lib;Smart_debug.lib;SoeUtil_debug.lib;ZlibUtil_debug.lib;picn20md.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)$(ProjectName)_d.exe</OutputFile>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libcmt;MSVCRTD;msvcrt;libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>$(OutDir)$(ProjectName)_d.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<AdditionalOptions>/SAFESEH:NO %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Full</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||||
<OmitFramePointers>false</OmitFramePointers>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\compile\win32\LightningEditor\Optimized;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderFile>FirstLightningEditor.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>$(OutDir)</AssemblerListingLocation>
|
||||
<ObjectFileName>$(OutDir)</ObjectFileName>
|
||||
<ProgramDataBaseFileName>$(OutDir)$(ProjectName)_o.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)$(ProjectName)_o.exe</OutputFile>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>libcmt;MSVCRTD;msvcrt;libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>$(OutDir)$(ProjectName)_o.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
</Link>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||||
<OmitFramePointers>true</OmitFramePointers>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\..\..\compile\win32\LightningEditor\Release;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<PrecompiledHeaderFile>FirstLightningEditor.h</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<AssemblerListingLocation>$(OutDir)</AssemblerListingLocation>
|
||||
<ObjectFileName>$(OutDir)</ObjectFileName>
|
||||
<ProgramDataBaseFileName>$(OutDir)$(ProjectName)_r.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>false</TreatWarningAsError>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<UseFullPaths>true</UseFullPaths>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)$(ProjectName)_r.exe</OutputFile>
|
||||
<AdditionalLibraryDirectories>..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<IgnoreSpecificDefaultLibraries>msvcrt;libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>$(OutDir)$(ProjectName)_r.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
</Link>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\..\..\compile\win32\LightningEditor\Debug\BaseMainWindow_d.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level3</WarningLevel>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\..\..\compile\win32\LightningEditor\Optimized\BaseMainWindow_o.cpp">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">Level3</WarningLevel>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\..\..\compile\win32\LightningEditor\Release\BaseMainWindow_r.cpp">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">true</ExcludedFromBuild>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level3</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\win32\FirstLightningEditor.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\win32\LightningEditorGameWidget.cpp" />
|
||||
<ClCompile Include="..\..\src\win32\LightningEditorIoWin.cpp">
|
||||
<Optimization Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">MaxSpeed</Optimization>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\win32\main.cpp">
|
||||
<Optimization Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">MaxSpeed</Optimization>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\win32\MainWindow.cpp">
|
||||
<Optimization Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">MaxSpeed</Optimization>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\win32\QtUtility.cpp">
|
||||
<Optimization Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">MaxSpeed</Optimization>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\..\..\..\..\compile\win32\LightningEditor\Debug\BaseMainWindow.h" />
|
||||
<ClInclude Include="..\..\..\..\..\..\compile\win32\LightningEditor\Optimized\BaseMainWindow.h" />
|
||||
<ClInclude Include="..\..\..\..\..\..\compile\win32\LightningEditor\Release\BaseMainWindow.h" />
|
||||
<ClInclude Include="..\..\src\win32\FirstLightningEditor.h" />
|
||||
<CustomBuild Include="..\..\src\win32\LightningEditorGameWidget.h">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">moc %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(TargetDir)%(Filename).moc;%(Outputs)</Outputs>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">moc %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">$(TargetDir)%(Filename).moc;%(Outputs)</Outputs>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">moc %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(TargetDir)%(Filename).moc;%(Outputs)</Outputs>
|
||||
</CustomBuild>
|
||||
<ClInclude Include="..\..\src\win32\LightningEditorIoWin.h" />
|
||||
<CustomBuild Include="..\..\src\win32\MainWindow.h">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">moc %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(TargetDir)%(Filename).moc;%(Outputs)</Outputs>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">moc %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">$(TargetDir)%(Filename).moc;%(Outputs)</Outputs>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">moc %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(TargetDir)%(Filename).moc;%(Outputs)</Outputs>
|
||||
</CustomBuild>
|
||||
<ClInclude Include="..\..\src\win32\QtUtility.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\ui\BaseMainWindow.ui">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">ui %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)</Outputs>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">ui %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Optimized|Win32'">$(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)</Outputs>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">ui %(Filename)</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
|
||||
..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp</Command>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)</Outputs>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\blat194\build\win32\blat.vcxproj">
|
||||
<Project>{ecbdfcff-f4ae-475a-aa90-729eb96430a0}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\lcdui_src\build\win32\lcdui.vcxproj">
|
||||
<Project>{20d2aee7-b60a-4ec9-b187-fa76062a6c39}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\build\win32\libEverQuestTCG.vcxproj">
|
||||
<Project>{03f3c054-f380-4618-be46-6e25061a3587}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\libMozilla\build\win32\libMozilla.vcxproj">
|
||||
<Project>{c6c1e14a-dedb-48c6-b028-0c9e4eff5dc4}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\udplibrary\udplibrary.vcxproj">
|
||||
<Project>{1a7d1159-3474-4520-882f-f1842f0aafae}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\ui\build\win32\ui.vcxproj">
|
||||
<Project>{d4accb0c-7b66-433d-b715-8ef7f43b8e2d}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\3rd\library\zlib-1.2.3\zlib.vcxproj">
|
||||
<Project>{9496a020-65ad-45a6-9acf-ae4f3358b027}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\archive\build\win32\archive.vcxproj">
|
||||
<Project>{52153865-1abf-4fbb-84c4-0fc439716f1e}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\fileInterface\build\win32\fileInterface.vcxproj">
|
||||
<Project>{de93996c-cb51-4d61-85a0-a9dfc677445f}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\localizationArchive\build\win32\localizationArchive.vcxproj">
|
||||
<Project>{a8036ec1-9682-4315-a3d2-6b26c3245d50}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\localization\build\win32\localization.vcxproj">
|
||||
<Project>{0fb11bc8-3bd1-4471-8dda-da3bc05937b2}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\singleton\build\win32\singleton.vcxproj">
|
||||
<Project>{d409a18e-f788-4f1b-bad1-ed58ee4d458f}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\unicodeArchive\build\win32\unicodeArchive.vcxproj">
|
||||
<Project>{41269a52-38b8-4f9a-ae38-1103bb03a10b}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\external\ours\library\unicode\build\win32\unicode.vcxproj">
|
||||
<Project>{b97963ef-49e4-477e-85ff-e7fee7c626d7}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\game\client\library\swgClientQtWidgets\build\win32\swgClientQtWidgets.vcxproj">
|
||||
<Project>{805a2fe0-7592-4f4e-bc23-a0d5abc624b4}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\game\client\library\swgClientUserInterface\build\win32\swgClientUserInterface.vcxproj">
|
||||
<Project>{eaa23f07-4419-4aed-83d2-06654119b6f6}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\game\server\library\swgServerNetworkMessages\build\win32\swgServerNetworkMessages.vcxproj">
|
||||
<Project>{950e9cf2-cd44-476c-826a-bb7869241f5b}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\build\win32\swgSharedNetworkMessages.vcxproj">
|
||||
<Project>{fcc0f2b5-aade-4454-aff2-4d91365b4883}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\..\game\shared\library\swgSharedUtility\build\win32\swgSharedUtility.vcxproj">
|
||||
<Project>{a378fab0-5b67-44bd-a3d8-815861792d6b}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedCollision\build\win32\sharedCollision.vcxproj">
|
||||
<Project>{03a9a516-227e-49bb-a1c5-64b34cbddc66}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedCommandParser\build\win32\sharedCommandParser.vcxproj">
|
||||
<Project>{20d4d8eb-87ca-4c5f-8ba3-ffc898563c40}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedCompression\build\win32\sharedCompression.vcxproj">
|
||||
<Project>{6bd52b35-92ca-44e4-995e-2b79c7398183}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedDebug\build\win32\sharedDebug.vcxproj">
|
||||
<Project>{f3245c29-7760-4956-b1b7-fc483be417cd}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedFile\build\win32\sharedFile.vcxproj">
|
||||
<Project>{e0f9d922-daa7-475e-a95a-7bc540ed58fe}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedFoundationTypes\build\win32\sharedFoundationTypes.vcxproj">
|
||||
<Project>{d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedFoundation\build\win32\sharedFoundation.vcxproj">
|
||||
<Project>{c595c10e-ada8-429a-896a-8904a46737d3}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedFractal\build\win32\sharedFractal.vcxproj">
|
||||
<Project>{882d8e54-0077-440b-94ac-762bde522e3b}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedGame\build\win32\sharedGame.vcxproj">
|
||||
<Project>{2338795c-ce02-4902-bef4-53645a0c3267}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedImage\build\win32\sharedImage.vcxproj">
|
||||
<Project>{aacbd5d6-d7dd-4ff9-8523-316ccf20115a}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedInputMap\build\win32\sharedInputMap.vcxproj">
|
||||
<Project>{101cf34f-b5fd-4a14-a3e9-fd28078760be}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedIoWin\build\win32\sharedIoWin.vcxproj">
|
||||
<Project>{03819289-4e8b-44e9-9f3b-a3243c9797c9}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedLog\build\win32\sharedLog.vcxproj">
|
||||
<Project>{2ae0cef0-c4f2-4786-a026-8338fb09d61b}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedMathArchive\build\win32\sharedMathArchive.vcxproj">
|
||||
<Project>{0202adb3-5587-4138-a626-52b7db52fbba}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedMath\build\win32\sharedMath.vcxproj">
|
||||
<Project>{5789ea7c-6596-4dcc-a9fb-dd7582888f90}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedMemoryManager\build\win32\sharedMemoryManager.vcxproj">
|
||||
<Project>{dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedMessageDispatch\build\win32\sharedMessageDispatch.vcxproj">
|
||||
<Project>{c87164f5-14a9-403c-8bc4-217fd40731ea}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedNetworkMessages\build\win32\sharedNetworkMessages.vcxproj">
|
||||
<Project>{decf2964-3a66-4fa6-ab27-d4507c5480ea}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedNetwork\build\win32\sharedNetwork.vcxproj">
|
||||
<Project>{df4d72ef-2341-4462-ab78-b130450511da}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedObject\build\win32\sharedObject.vcxproj">
|
||||
<Project>{ac1277c1-ce5a-4ece-9be3-6b4647b657a5}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedRandom\build\win32\sharedRandom.vcxproj">
|
||||
<Project>{2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedRegex\build\win32\sharedRegex.vcxproj">
|
||||
<Project>{1d87a2e7-f0cf-42e9-bc38-846c53622c40}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedRemoteDebugServer\build\win32\sharedRemoteDebugServer.vcxproj">
|
||||
<Project>{afa9ad0a-6e1a-4004-a1ff-8293eb957ef1}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\SHAREDSKILLSYSTEM\build\win32\sharedSkillSystem.vcxproj">
|
||||
<Project>{83ea2b87-762e-4ec6-bb06-2dcbae759d6e}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedStatusWindow\build\win32\sharedStatusWindow.vcxproj">
|
||||
<Project>{ae9205dd-83fc-4f31-a5b3-70623b3107a1}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedSwitcher\build\win32\sharedSwitcher.vcxproj">
|
||||
<Project>{070babeb-131a-4dc7-8621-69407c531f8e}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedSynchronization\build\win32\sharedSynchronization.vcxproj">
|
||||
<Project>{2fe4e38d-be7d-4e3b-9613-63e9f01855f4}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedTerrain\build\win32\sharedTerrain.vcxproj">
|
||||
<Project>{6612cc35-6931-4ac6-a315-e955ca60b643}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedThread\build\win32\sharedThread.vcxproj">
|
||||
<Project>{858f7dce-325a-467c-9dda-2fe40217286f}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedUtility\build\win32\sharedUtility.vcxproj">
|
||||
<Project>{52df0d16-d070-47fc-b987-8d80b027d114}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\..\shared\library\sharedXml\build\win32\sharedXml.vcxproj">
|
||||
<Project>{51e2988c-ce2d-42d7-a27c-06a322b4aac2}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientAnimation\build\win32\clientAnimation.vcxproj">
|
||||
<Project>{4af54aee-35f9-473c-8c2e-c24d2eedb17b}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientAudio\build\win32\clientAudio.vcxproj">
|
||||
<Project>{250a5957-7bb9-4f50-b0e9-19c87136977e}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientBugReporting\build\win32\clientBugReporting.vcxproj">
|
||||
<Project>{147d02d6-c76c-4058-863a-a9b3364c2047}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientDirectInput\build\win32\clientDirectInput.vcxproj">
|
||||
<Project>{f1b57bf8-072e-4e69-940a-c254a98da10d}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientGame\build\win32\clientGame.vcxproj">
|
||||
<Project>{d10d1a1a-6129-4ef1-b3d7-5c12ee53dfca}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientGraphics\build\win32\clientGraphics.vcxproj">
|
||||
<Project>{7c4b8a91-be83-4bfe-af94-f75ce39fe67d}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientObject\build\win32\clientObject.vcxproj">
|
||||
<Project>{82393d39-3807-4c87-932f-e3571616a7dd}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientParticle\build\win32\clientParticle.vcxproj">
|
||||
<Project>{97a83cde-723f-47de-a5c6-b779cf50ae9c}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientSkeletalAnimation\build\win32\clientSkeletalAnimation.vcxproj">
|
||||
<Project>{66bcfd48-0307-41fd-b4d9-9991bf572a27}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientTerrain\build\win32\clientTerrain.vcxproj">
|
||||
<Project>{2024a6b1-5e9a-4cc9-8243-7232f9b62264}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientTextureRenderer\build\win32\clientTextureRenderer.vcxproj">
|
||||
<Project>{f1fdc6af-af8c-42a5-826e-c66ae9cc6ca6}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\..\library\clientUserInterface\build\win32\clientUserInterface.vcxproj">
|
||||
<Project>{92605a4d-baa0-46e6-9733-6464f6578b6a}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Direct3d9\build\win32\Direct3d9.vcxproj">
|
||||
<Project>{e89a79a9-8488-4d42-bf88-b9833f5607c0}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Direct3d9\build\win32\Direct3d9_ffp.vcxproj">
|
||||
<Project>{2889f119-79c4-4ea7-893a-9e0bd5f871c8}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Direct3d9\build\win32\Direct3d9_vsps.vcxproj">
|
||||
<Project>{cf3b1ee2-d965-44e1-9464-01297964f2cb}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,2 @@
|
||||
msvcrt
|
||||
libc
|
||||
@@ -0,0 +1,2 @@
|
||||
libcmt
|
||||
MSVCRTD
|
||||
@@ -0,0 +1,2 @@
|
||||
libcmt
|
||||
MSVCRTD
|
||||
@@ -0,0 +1,52 @@
|
||||
../../../../../../engine/client/library/clientAnimation/include/public
|
||||
../../../../../../engine/client/library/clientAudio/include/public
|
||||
../../../../../../engine/client/library/clientBugReporting/include/public
|
||||
../../../../../../engine/client/library/clientDirectInput/include/public
|
||||
../../../../../../engine/client/library/clientGame/include/public
|
||||
../../../../../../engine/client/library/clientGraphics/include/public
|
||||
../../../../../../engine/client/library/clientObject/include/public
|
||||
../../../../../../engine/client/library/clientParticle/include/public
|
||||
../../../../../../engine/client/library/clientSkeletalAnimation/include/public
|
||||
../../../../../../engine/client/library/clientTerrain/include/public
|
||||
../../../../../../engine/client/library/clientTextureRenderer/include/public
|
||||
../../../../../../engine/client/library/clientUserInterface/include/public
|
||||
../../../../../../engine/shared/library/sharedCollision/include/public
|
||||
../../../../../../engine/shared/library/sharedCompression/include/public
|
||||
../../../../../../engine/shared/library/sharedDebug/include/public
|
||||
../../../../../../engine/shared/library/sharedFile/include/public
|
||||
../../../../../../engine/shared/library/sharedFoundation/include/public
|
||||
../../../../../../engine/shared/library/sharedFoundationTypes/include/public
|
||||
../../../../../../engine/shared/library/sharedGame/include/public
|
||||
../../../../../../engine/shared/library/sharedImage/include/public
|
||||
../../../../../../engine/shared/library/sharedInputMap/include/public
|
||||
../../../../../../engine/shared/library/sharedIoWin/include/public
|
||||
../../../../../../engine/shared/library/sharedMath/include/public
|
||||
../../../../../../engine/shared/library/sharedMathArchive/include/public
|
||||
../../../../../../engine/shared/library/sharedMemoryManager/include/public
|
||||
../../../../../../engine/shared/library/sharedMessageDispatch/include/public
|
||||
../../../../../../engine/shared/library/sharedNetworkMessages/include/public
|
||||
../../../../../../engine/shared/library/sharedObject/include/public
|
||||
../../../../../../engine/shared/library/sharedRandom/include/public
|
||||
../../../../../../engine/shared/library/sharedRegex/include/public
|
||||
../../../../../../engine/shared/library/sharedSynchronization/include/public
|
||||
../../../../../../engine/shared/library/sharedTerrain/include/public
|
||||
../../../../../../engine/shared/library/sharedThread/include/public
|
||||
../../../../../../engine/shared/library/sharedUtility/include/public
|
||||
../../../../../../engine/shared/library/sharedXml/include/public
|
||||
../../../../../../external/3rd/library/directx9/include
|
||||
../../../../../../external/3rd/library/libEverQuestTCG/include/public
|
||||
../../../../../../external/3rd/library/miles/include
|
||||
../../../../../../external/3rd/library/perforce/include
|
||||
../../../../../../external/3rd/library/qt/3.3.4/include
|
||||
../../../../../../external/3rd/library/stlport453/stlport
|
||||
../../../../../../external/3rd/library/ui/include
|
||||
../../../../../../external/3rd/library/libMozilla/include/public
|
||||
../../../../../../external/ours/library/Unicode/include
|
||||
../../../../../../external/ours/library/UnicodeArchive/include/public
|
||||
../../../../../../external/ours/library/archive/include
|
||||
../../../../../../external/ours/library/fileInterface/include/public
|
||||
../../../../../../external/ours/library/localization/include
|
||||
../../../../../../external/ours/library/localizationArchive/include/public
|
||||
../../../../../../external/ours/library/singleton/include
|
||||
../../../../../../game/client/library/swgClientQtWidgets/include/public
|
||||
../../../../../../game/client/library/swgClientUserInterface/include/public
|
||||
@@ -0,0 +1 @@
|
||||
..\..\..\..\..\..\compile\win32\LightningEditor\Debug
|
||||
@@ -0,0 +1 @@
|
||||
..\..\..\..\..\..\compile\win32\LightningEditor\Optimized
|
||||
@@ -0,0 +1 @@
|
||||
..\..\..\..\..\..\compile\win32\LightningEditor\Release
|
||||
@@ -0,0 +1,23 @@
|
||||
qt-mt334.lib
|
||||
qtmain.lib
|
||||
Mss32.lib
|
||||
dpvs.lib
|
||||
ws2_32.lib
|
||||
dxguid.lib
|
||||
dsound.lib
|
||||
dinput8.lib
|
||||
oldnames.lib
|
||||
libpcre.a
|
||||
libclient.lib
|
||||
libsupp.lib
|
||||
librpc.lib
|
||||
libxml2-win32-release.lib
|
||||
winmm.lib
|
||||
mswsock.lib
|
||||
lgLcd.lib
|
||||
nspr4.lib
|
||||
plc4.lib
|
||||
profdirserviceprovider_s.lib
|
||||
xpcom.lib
|
||||
xul.lib
|
||||
vivoxSharedWrapper_release.lib
|
||||
@@ -0,0 +1,6 @@
|
||||
VideoCapture_debug.lib
|
||||
ImageCapture_debug.lib
|
||||
Smart_debug.lib
|
||||
SoeUtil_debug.lib
|
||||
ZlibUtil_debug.lib
|
||||
picn20md.lib
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user