@@ -97,6 +97,11 @@ void ProjectFile::initialize(Project* project)
97
97
_includes.push_back (inc);
98
98
}
99
99
100
+ for (auto & inc : project->definesDll ())
101
+ {
102
+ _definesDll.push_back (inc);
103
+ }
104
+
100
105
for (auto & inc : project->definesLib ())
101
106
{
102
107
_definesLib.push_back (inc);
@@ -187,6 +192,8 @@ void ProjectFile::loadConfig()
187
192
addLines (config,_cppFiles);
188
193
else if (line == L" [VISUAL_STUDIO]" )
189
194
_minimumVisualStudioVersion=parseVisualStudioVersion (readLine (config));
195
+ else if (line == L" [DEFINES_DLL]" )
196
+ addLines (config,_definesDll);
190
197
else if (line == L" [DEFINES_LIB]" )
191
198
addLines (config,_definesLib);
192
199
}
@@ -199,6 +206,7 @@ void ProjectFile::merge(ProjectFile *projectFile)
199
206
merge (projectFile->_dependencies ,_dependencies);
200
207
merge (projectFile->_includes ,_includes);
201
208
merge (projectFile->_cppFiles ,_cppFiles);
209
+ merge (projectFile->_definesDll ,_definesDll);
202
210
merge (projectFile->_definesLib ,_definesLib);
203
211
}
204
212
@@ -804,7 +812,7 @@ void ProjectFile::writePreprocessorDefinitions(wofstream &file,const bool debug)
804
812
}
805
813
else if (_project->isDll ())
806
814
{
807
- for (auto & def : _project-> definesDll () )
815
+ for (auto & def : _definesDll )
808
816
{
809
817
file << " ;" << def;
810
818
}
0 commit comments