Skip to content

Commit d7ddfaa

Browse files
authored
dmake: added missing standalone headers (#6731)
1 parent cf02d06 commit d7ddfaa

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

lib/cppcheck.vcxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
<ClInclude Include="json.h" />
164164
<ClInclude Include="keywords.h" />
165165
<ClInclude Include="library.h" />
166+
<ClInclude Include="matchcompiler.h" />
166167
<ClInclude Include="mathlib.h" />
167168
<ClInclude Include="path.h" />
168169
<ClInclude Include="pathanalysis.h" />
@@ -174,6 +175,7 @@
174175
<ClInclude Include="reverseanalyzer.h" />
175176
<ClInclude Include="settings.h" />
176177
<ClInclude Include="smallvector.h" />
178+
<ClInclude Include="sourcelocation.h" />
177179
<ClInclude Include="standards.h" />
178180
<ClInclude Include="summaries.h" />
179181
<ClInclude Include="suppressions.h" />

lib/lib.pri

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ HEADERS += $${PWD}/addoninfo.h \
5252
$${PWD}/json.h \
5353
$${PWD}/keywords.h \
5454
$${PWD}/library.h \
55+
$${PWD}/matchcompiler.h \
5556
$${PWD}/mathlib.h \
5657
$${PWD}/path.h \
5758
$${PWD}/pathanalysis.h \
@@ -63,6 +64,7 @@ HEADERS += $${PWD}/addoninfo.h \
6364
$${PWD}/reverseanalyzer.h \
6465
$${PWD}/settings.h \
6566
$${PWD}/smallvector.h \
67+
$${PWD}/sourcelocation.h \
6668
$${PWD}/standards.h \
6769
$${PWD}/summaries.h \
6870
$${PWD}/suppressions.h \

tools/dmake/dmake.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -466,8 +466,10 @@ int main(int argc, char **argv)
466466
libfiles_h.emplace_back("filesettings.h");
467467
libfiles_h.emplace_back("findtoken.h");
468468
libfiles_h.emplace_back("json.h");
469+
libfiles_h.emplace_back("matchcompiler.h");
469470
libfiles_h.emplace_back("precompiled.h");
470471
libfiles_h.emplace_back("smallvector.h");
472+
libfiles_h.emplace_back("sourcelocation.h");
471473
libfiles_h.emplace_back("standards.h");
472474
libfiles_h.emplace_back("tokenrange.h");
473475
libfiles_h.emplace_back("valueptr.h");

0 commit comments

Comments
 (0)