Changeset 477 in dev for trunk/ab5.0/abdev/BasicCompiler64


Ignore:
Timestamp:
Apr 6, 2008, 8:07:40 PM (16 years ago)
Author:
dai_9181
Message:

構成管理を大幅に改良。

Location:
trunk/ab5.0/abdev/BasicCompiler64
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler64/BasicCompiler.vcproj

    r475 r477  
    442442                >
    443443                <File
     444                    RelativePath="..\BasicCompiler_Common\include\Configuration.h"
     445                    >
     446                </File>
     447                <File
    444448                    RelativePath="..\BasicCompiler_Common\include\Program.h"
    445449                    >
  • trunk/ab5.0/abdev/BasicCompiler64/MakePeHdr.cpp

    r468 r477  
    11051105    int DosStubSize;
    11061106    hFile=CreateFile(
    1107         ( Jenga::Common::Environment::GetAppDir() + "\\SubOperation\\dosstub.pgm" ).c_str(),
     1107        ( ActiveBasic::Common::Environment::GetAbdevSystemDirPath() + "\\dosstub.pgm" ).c_str(),
    11081108        GENERIC_READ,0,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
    11091109    if(hFile==INVALID_HANDLE_VALUE){
  • trunk/ab5.0/abdev/BasicCompiler64/stdafx.h

    r472 r477  
    2222#include <boost/foreach.hpp>
    2323
     24#include <jenga/include/common/CmdLine.h>
     25#include <jenga/include/common/Environment.h>
     26#include <jenga/include/common/File.h>
     27#include <jenga/include/common/Path.h>
    2428#include <jenga/include/common/String.h>
    25 #include <jenga/include/common/File.h>
    26 #include <jenga/include/common/CmdLine.h>
    27 #include <jenga/include/common/Path.h>
     29
     30#include <abdev/ab_common/Environment.h>
    2831
    2932#include "../BasicCompiler_Common/common.h"
     
    3134
    3235#include <Hashmap.h>
     36#include <Configuration.h>
    3337#include <Program.h>
    3438#include <Compiler.h>
Note: See TracChangeset for help on using the changeset viewer.