started working on generation of msvc2kX project files. THESE ARE NOT CORRECT. Right...
[reactos.git] / reactos / tools / rbuild / backend / msvc / msvc.h
1 /*
2 * Copyright (C) 2005 Trevor McCort
3 * Copyright (C) 2005 Casper S. Hornstrup
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19 #ifndef __MSVC_H__
20 #define __MSVC_H__
21
22 #include <fstream>
23 #include <vector>
24 #include <string>
25
26 #include "../backend.h"
27
28 class FileUnit
29 {
30 public:
31 std::string filename;
32 std::string folder;
33 };
34
35 class MSVCBackend : public Backend
36 {
37 public:
38
39 MSVCBackend(Project &project,
40 Configuration& configuration);
41 virtual ~MSVCBackend() {}
42
43 virtual void Process();
44
45 private:
46
47 void ProcessModules();
48 void ProcessFile(std::string &filename);
49
50 bool CheckFolderAdded(std::string &folder);
51 void AddFolders(std::string &folder);
52
53 void OutputFolders();
54 void OutputFileUnits();
55
56 std::string DspFileName ( const Module& module ) const;
57 std::string VcprojFileName ( const Module& module ) const;
58
59 std::vector<FileUnit> m_fileUnits;
60 std::vector<std::string> m_folders;
61
62 int m_unitCount;
63
64 FILE* m_dswFile;
65 FILE* m_slnFile;
66
67 // functions in msvcmaker.cpp:
68
69 void _generate_dsp ( const Module& module );
70 void _generate_dsw_header ( FILE* OUT );
71 void _generate_dsw_project (
72 FILE* OUT,
73 const Module& module,
74 std::string dsp_file,
75 const std::vector<Dependency*>& dependencies );
76
77 void _generate_dsw_footer ( FILE* OUT );
78 void _generate_wine_dsw ( FILE* OUT );
79
80 // functions in vcprojmaker.cpp:
81 void _generate_vcproj ( const Module& module );
82
83 void _generate_sln_header ( FILE* OUT );
84 void _generate_sln ( FILE* OUT );
85 };
86
87 #endif // __MSVC_H__
88