source: dev/trunk/ab5.0/abdev/BasicCompiler64/stdafx.h@ 472

Last change on this file since 472 was 472, checked in by dai_9181, 16 years ago

デプロイ時にcore.lib/cored.libのビルドもできるようにした。

File size: 744 bytes
RevLine 
[218]1#pragma once
2
[322]3#include <map>
[218]4#include <string>
5#include <vector>
6#include <fstream>
[468]7#include <iostream>
[218]8
9#include <windows.h>
10#include <stdio.h>
11#include <string.h>
12#include <math.h>
13#include <commctrl.h>
14#include <time.h>
15#include <limits.h>
16#include <shlobj.h>
[468]17#include <process.h>
[472]18#include <fcntl.h>
19#include <io.h>
[218]20
21//boost libraries
22#include <boost/foreach.hpp>
23
[308]24#include <jenga/include/common/String.h>
[322]25#include <jenga/include/common/File.h>
[458]26#include <jenga/include/common/CmdLine.h>
[468]27#include <jenga/include/common/Path.h>
[308]28
[218]29#include "../BasicCompiler_Common/common.h"
[463]30#include "../BasicCompiler_Common/BasicFixed.h"
[308]31
[353]32#include <Hashmap.h>
33#include <Program.h>
[308]34#include <Compiler.h>
[468]35#include <Debugger.h>
Note: See TracBrowser for help on using the repository browser.