chore: bump scintilla and lexilla version
This commit is contained in:
41
3rdparty/lexilla545/lexilla/test/testlexers.mak
vendored
Normal file
41
3rdparty/lexilla545/lexilla/test/testlexers.mak
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
# Build the lexers test with Microsoft Visual C++ using nmake
|
||||
# Tested with Visual C++ 2022
|
||||
|
||||
DEL = del /q
|
||||
EXE = TestLexers.exe
|
||||
|
||||
INCLUDEDIRS = -I ../../scintilla/include -I ../include -I ../access
|
||||
|
||||
!IFDEF LEXILLA_STATIC
|
||||
STATIC_FLAG = -D LEXILLA_STATIC
|
||||
LIBS = ../bin/liblexilla.lib
|
||||
!ENDIF
|
||||
|
||||
!IFDEF DEBUG
|
||||
DEBUG_OPTIONS = -Zi -DEBUG -Od -MTd -DDEBUG $(STATIC_FLAG)
|
||||
!ELSE
|
||||
DEBUG_OPTIONS = -O2 -MT -DNDEBUG $(STATIC_FLAG) -GL
|
||||
!ENDIF
|
||||
|
||||
CXXFLAGS = /EHsc /std:c++20 $(DEBUG_OPTIONS) $(INCLUDEDIRS)
|
||||
|
||||
OBJS = TestLexers.obj TestDocument.obj LexillaAccess.obj
|
||||
|
||||
all: $(EXE)
|
||||
|
||||
test: $(EXE)
|
||||
$(EXE)
|
||||
|
||||
clean:
|
||||
$(DEL) *.o *.obj *.exe
|
||||
|
||||
$(EXE): $(OBJS) $(LIBS)
|
||||
$(CXX) $(CXXFLAGS) $(LIBS) /Fe$@ $**
|
||||
|
||||
.cxx.obj::
|
||||
$(CXX) $(CXXFLAGS) -c $<
|
||||
{..\access}.cxx.obj::
|
||||
$(CXX) $(CXXFLAGS) -c $<
|
||||
|
||||
TestLexers.obj: $*.cxx TestDocument.h
|
||||
TestDocument.obj: $*.cxx $*.h
|
Reference in New Issue
Block a user