forked from eranif/codelite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompiler_command_line_parser.h
83 lines (74 loc) · 2.02 KB
/
compiler_command_line_parser.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#ifndef COMMANDLINEPARSER_H
#define COMMANDLINEPARSER_H
#include <wx/string.h>
#include <wx/arrstr.h>
#include <wx/filename.h>
#include <set>
#include "codelite_exports.h"
class WXDLLIMPEXP_CL CompilerCommandLineParser
{
public:
typedef std::set<wxString> Set_t;
protected:
wxArrayString m_includes;
wxArrayString m_macros;
wxArrayString m_macrosWithPrefix;
wxArrayString m_includesWithPrefix;
wxArrayString m_framworks;
wxString m_standard;
int m_argc;
char ** m_argv;
wxString m_diretory;
wxString m_pchFile;
protected:
void AddIncludesFromFile(const wxFileName& includeFile);
public:
CompilerCommandLineParser(const wxString &cmdline, const wxString &workingDirectory = wxEmptyString);
virtual ~CompilerCommandLineParser();
wxString GetCompileLine() const;
void MakeAbsolute(const wxString &path);
const wxString& GetStandard() const {
return m_standard;
}
wxString GetStandardWithPrefix() const ;
const wxArrayString& GetFramworks() const {
return m_framworks;
}
const wxString& GetPchFile() const {
return m_pchFile;
}
void SetArgc(int argc) {
this->m_argc = argc;
}
void SetArgv(char** argv) {
this->m_argv = argv;
}
void SetIncludes(const wxArrayString& includes) {
this->m_includes = includes;
}
void SetMacros(const wxArrayString& macros) {
this->m_macros = macros;
}
const wxArrayString& GetIncludes() const {
return m_includes;
}
const wxArrayString& GetMacros() const {
return m_macros;
}
char** GetArgv() {
return m_argv;
}
int GetArgc() const {
return m_argc;
}
const wxString& GetDiretory() const {
return m_diretory;
}
const wxArrayString& GetIncludesWithPrefix() const {
return m_includesWithPrefix;
}
const wxArrayString& GetMacrosWithPrefix() const {
return m_macrosWithPrefix;
}
};
#endif // COMMANDLINEPARSER_H