Changeset 518 in dev


Ignore:
Timestamp:
May 1, 2008, 12:49:18 PM (16 years ago)
Author:
dai_9181
Message:

jengaプロジェクトにプリコンパイル済みヘッダを適用した。

Location:
trunk/ab5.0
Files:
1 deleted
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/include/Delegate.h

    r449 r518  
    11#pragma once
    22
    3 #include <Hashmap.h>
    43#include <Procedure.h>
    54
  • trunk/ab5.0/abdev/BasicCompiler_Common/include/Procedure.h

    r511 r518  
    11#pragma once
    22
    3 #include <Hashmap.h>
    43#include <option.h>
    54#include <Program.h>
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/ObjectModule.cpp

    r517 r518  
    4646using namespace ActiveBasic::Common::Lexical;
    4747
    48 #include <Hashmap.h>
    4948#include <Configuration.h>
    5049#include <Type.h>
  • trunk/ab5.0/abdev/ab_common/ab_common.vcproj

    r517 r518  
    344344            </File>
    345345            <File
     346                RelativePath=".\include\Hashmap.h"
     347                >
     348            </File>
     349            <File
    346350                RelativePath=".\stdafx.h"
    347351                >
  • trunk/ab5.0/jenga/include/common/CmdLine.h

    r457 r518  
    1 #include <vector>
    2 #include <string>
    3 
     1#pragma once
    42
    53namespace Jenga{
  • trunk/ab5.0/jenga/projects/jenga/jenga.vcproj

    r484 r518  
    4545                BasicRuntimeChecks="0"
    4646                RuntimeLibrary="1"
     47                UsePrecompiledHeader="2"
    4748                WarningLevel="3"
    4849                Detect64BitPortabilityProblems="true"
     
    111112                AdditionalIncludeDirectories="..\..\..\;..\..\..\cpplibs\boost"
    112113                RuntimeLibrary="0"
     114                UsePrecompiledHeader="2"
    113115                WarningLevel="3"
    114116                Detect64BitPortabilityProblems="true"
     
    175177                BasicRuntimeChecks="3"
    176178                RuntimeLibrary="1"
     179                UsePrecompiledHeader="2"
    177180                WarningLevel="3"
    178181                Detect64BitPortabilityProblems="true"
     
    235238                AdditionalIncludeDirectories="..\..\..\;..\..\..\cpplibs\boost"
    236239                RuntimeLibrary="0"
     240                UsePrecompiledHeader="2"
    237241                WarningLevel="3"
    238242                Detect64BitPortabilityProblems="true"
     
    290294            </File>
    291295            <File
    292                 RelativePath="..\..\src\common\index.cpp"
    293                 >
    294             </File>
    295             <File
    296296                RelativePath="..\..\src\common\Path.cpp"
    297297                >
     298            </File>
     299            <File
     300                RelativePath=".\stdafx.cpp"
     301                >
     302                <FileConfiguration
     303                    Name="Debug(x64)|Win32"
     304                    >
     305                    <Tool
     306                        Name="VCCLCompilerTool"
     307                        UsePrecompiledHeader="1"
     308                    />
     309                </FileConfiguration>
     310                <FileConfiguration
     311                    Name="Release(x64)|Win32"
     312                    >
     313                    <Tool
     314                        Name="VCCLCompilerTool"
     315                        UsePrecompiledHeader="1"
     316                    />
     317                </FileConfiguration>
     318                <FileConfiguration
     319                    Name="Debug(x86)|Win32"
     320                    >
     321                    <Tool
     322                        Name="VCCLCompilerTool"
     323                        UsePrecompiledHeader="1"
     324                    />
     325                </FileConfiguration>
     326                <FileConfiguration
     327                    Name="Release(x86)|Win32"
     328                    >
     329                    <Tool
     330                        Name="VCCLCompilerTool"
     331                        UsePrecompiledHeader="1"
     332                    />
     333                </FileConfiguration>
    298334            </File>
    299335            <File
     
    332368            </File>
    333369            <File
     370                RelativePath=".\stdafx.h"
     371                >
     372            </File>
     373            <File
    334374                RelativePath="..\..\include\common\String.h"
    335375                >
  • trunk/ab5.0/jenga/src/common/CmdLine.cpp

    r457 r518  
    1 #include <jenga/include/common/CmdLine.h>
    2 
    3 #include <boost/foreach.hpp>
     1#include "stdafx.h"
    42
    53using namespace Jenga::Common;
  • trunk/ab5.0/jenga/src/common/Directory.cpp

    r295 r518  
    1 #include <boost/foreach.hpp>
    2 #include <jenga/include/common/Directory.h>
    3 #include <jenga/include/common/Exception.h>
    4 
    5 #include <imagehlp.h>
     1#include "stdafx.h"
    62
    73using namespace std;
  • trunk/ab5.0/jenga/src/common/Exception.cpp

    r207 r518  
    1 #include <jenga/include/common/Exception.h>
    2 
    3 #include <windows.h>
     1#include "stdafx.h"
    42
    53
  • trunk/ab5.0/jenga/src/common/Path.cpp

    r480 r518  
    1 #include <boost/foreach.hpp>
    2 #include <jenga/include/common/Environment.h>
    3 #include <jenga/include/common/Path.h>
    4 
    5 #include <windows.h>
    6 
     1#include "stdafx.h"
    72
    83bool Jenga::Common::Path::IsExistFile() const
  • trunk/ab5.0/jenga/src/common/String.cpp

    r472 r518  
    1 #include <boost/foreach.hpp>
    2 #include <jenga/include/common/String.h>
    3 
     1#include "stdafx.h"
    42
    53bool Jenga::Common::IsExistString( const Jenga::Common::Strings &strings, const std::string &findStr )
Note: See TracChangeset for help on using the changeset viewer.