mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-08-24 11:18:32 +02:00
Update with https://www.scintilla.org/scintilla521.zip https://www.scintilla.org/lexilla515.zip - fix setting to bring Scintilla::PositionCR from ScintillaStructures.h inline with Sci_Position.h Sci_PositionCR - add workaround to enable lexer for searchResult commented out SCI_SETILEXER call on searchResult to get one result which is correctly handled by the lexer, added comment about the current problem with property @MarkingsStruct which seems to disappear after call to SCI_SETILEXER or CreateLexer - corrected usage of ObjC lexer - removed unnecessary filter stuff - use own sections for scintilla and lexilla build targets and allow parallel builds - as libscilex is no longer existing, changed to libscintilla - adapt makefiles and cmake - use VS2019 - started simple changes for createlexer adaptations, nullpointercheck missing on return of lexer name from deprecated LexerNameFromID -> undefined behaviour - movement from id -> lexer name, mostly done via LexerNameFromID + switching off corresponding compiler warning - changed to SCI_SETILEXER from SCI_SETLEXER, SCI_SETLEXERLANGUAGE needs to be corrected, see Scintilla5Migration.html - just commented out: SCI_LOADLEXERLIBRARY Fix #10504, close #11419
105 lines
1.9 KiB
Plaintext
105 lines
1.9 KiB
Plaintext
// Define the standard order in which to include header files
|
|
// All platform headers should be included before Scintilla headers
|
|
// and each of these groups are then divided into directory groups.
|
|
|
|
// Base of the repository relative to this file
|
|
|
|
//base:..
|
|
|
|
// File patterns to check:
|
|
|
|
//source:include/*.h
|
|
//source:src/*.cxx
|
|
//source:lexlib/*.cxx
|
|
//source:lexers/*.cxx
|
|
//source:access/*.cxx
|
|
//source:test/*.cxx
|
|
//source:test/unit/*.cxx
|
|
|
|
// C standard library
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
|
|
// C++ wrappers of C standard library
|
|
#include <cstdlib>
|
|
#include <cassert>
|
|
#include <cstring>
|
|
#include <cctype>
|
|
#include <cstdio>
|
|
#include <cstdarg>
|
|
|
|
// C++ standard library
|
|
#include <utility>
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <set>
|
|
#include <optional>
|
|
#include <initializer_list>
|
|
#include <algorithm>
|
|
#include <iterator>
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <fstream>
|
|
#include <iomanip>
|
|
#include <filesystem>
|
|
|
|
// POSIX
|
|
#include <dlfcn.h>
|
|
|
|
// Windows header needed for loading DLL
|
|
#include <windows.h>
|
|
|
|
// Scintilla/Lexilla headers
|
|
|
|
// Non-platform-specific headers
|
|
|
|
// Scintilla include
|
|
|
|
#include "Sci_Position.h"
|
|
#include "ILexer.h"
|
|
#include "Scintilla.h"
|
|
|
|
// Lexilla include
|
|
|
|
#include "SciLexer.h"
|
|
#include "Lexilla.h"
|
|
|
|
// access
|
|
|
|
#include "LexillaAccess.h"
|
|
|
|
// lexlib
|
|
#include "StringCopy.h"
|
|
#include "PropSetSimple.h"
|
|
#include "WordList.h"
|
|
#include "LexAccessor.h"
|
|
#include "Accessor.h"
|
|
#include "StyleContext.h"
|
|
#include "CharacterSet.h"
|
|
#include "CharacterCategory.h"
|
|
#include "LexerModule.h"
|
|
#include "CatalogueModules.h"
|
|
#include "OptionSet.h"
|
|
#include "SparseState.h"
|
|
#include "SubStyles.h"
|
|
#include "DefaultLexer.h"
|
|
#include "LexerBase.h"
|
|
#include "LexerSimple.h"
|
|
#include "LexerNoExceptions.h"
|
|
|
|
// src
|
|
|
|
#include "TestDocument.h"
|
|
|
|
// Catch testing framework
|
|
#include "catch.hpp"
|
|
|