Skip to content

Commit 0a3521d

Browse files
committed
Also allow specifying the defines for a ProjectFile.
1 parent 062fec2 commit 0a3521d

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

Configure/ProjectFile.cpp

+9-1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ void ProjectFile::initialize(Project* project)
9797
_includes.push_back(inc);
9898
}
9999

100+
for (auto& inc : project->definesDll())
101+
{
102+
_definesDll.push_back(inc);
103+
}
104+
100105
for (auto& inc : project->definesLib())
101106
{
102107
_definesLib.push_back(inc);
@@ -187,6 +192,8 @@ void ProjectFile::loadConfig()
187192
addLines(config,_cppFiles);
188193
else if (line == L"[VISUAL_STUDIO]")
189194
_minimumVisualStudioVersion=parseVisualStudioVersion(readLine(config));
195+
else if (line == L"[DEFINES_DLL]")
196+
addLines(config,_definesDll);
190197
else if (line == L"[DEFINES_LIB]")
191198
addLines(config,_definesLib);
192199
}
@@ -199,6 +206,7 @@ void ProjectFile::merge(ProjectFile *projectFile)
199206
merge(projectFile->_dependencies,_dependencies);
200207
merge(projectFile->_includes,_includes);
201208
merge(projectFile->_cppFiles,_cppFiles);
209+
merge(projectFile->_definesDll,_definesDll);
202210
merge(projectFile->_definesLib,_definesLib);
203211
}
204212

@@ -804,7 +812,7 @@ void ProjectFile::writePreprocessorDefinitions(wofstream &file,const bool debug)
804812
}
805813
else if (_project->isDll())
806814
{
807-
for (auto& def : _project->definesDll())
815+
for (auto& def : _definesDll)
808816
{
809817
file << ";" << def;
810818
}

Configure/ProjectFile.h

+1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ class ProjectFile
116116
wstring _guid;
117117
vector<wstring> _includeFiles;
118118
vector<wstring> _includes;
119+
vector<wstring> _definesDll;
119120
vector<wstring> _definesLib;
120121
VisualStudioVersion _minimumVisualStudioVersion;
121122
wstring _name;

0 commit comments

Comments
 (0)