aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/HeaderCheck.py1
-rw-r--r--scripts/HeaderOrder.txt4
2 files changed, 5 insertions, 0 deletions
diff --git a/scripts/HeaderCheck.py b/scripts/HeaderCheck.py
index e36ffa18e..fd644f7db 100644
--- a/scripts/HeaderCheck.py
+++ b/scripts/HeaderCheck.py
@@ -45,6 +45,7 @@ def CheckFiles(root):
# The Qt platform code interleaves system and Scintilla headers
#~ filePaths += glob.glob(root + "/qt/ScintillaEditBase/*.cpp")
#~ filePaths += glob.glob(root + "/qt/ScintillaEdit/*.cpp")
+ filePaths += glob.glob(root + "/curses/*.cxx")
#~ print(filePaths)
masterHeaderList = ExtractHeaders(root + "/scripts/HeaderOrder.txt")
for f in filePaths:
diff --git a/scripts/HeaderOrder.txt b/scripts/HeaderOrder.txt
index af3891ba9..699963aa9 100644
--- a/scripts/HeaderOrder.txt
+++ b/scripts/HeaderOrder.txt
@@ -15,6 +15,7 @@
#include <ctype.h>
#include <limits.h>
#include <sys/time.h>
+#include <wchar.h>
// C++ wrappers of C standard library
#include <cstddef>
@@ -164,6 +165,9 @@
#import "ScintillaCocoa.h"
#import "PlatCocoa.h"
+// curses
+#include "ScintillaCurses.h"
+
// Catch testing framework
#include "catch.hpp"