cb7806e94c
[BUG_FIXED] (Author: Dave Brotherstone) Fix scintilla crash bug while closing a document. git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1104 f5eea248-9336-0410-98b8-ebc06183d4e3
77 lines
2.1 KiB
Prolog
77 lines
2.1 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2011-05-05T12:41:23
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = ScintillaEdit
|
|
TEMPLATE = lib
|
|
CONFIG += lib_bundle
|
|
|
|
VERSION = 3.3.4
|
|
|
|
SOURCES += \
|
|
ScintillaEdit.cpp \
|
|
ScintillaDocument.cpp \
|
|
../ScintillaEditBase/PlatQt.cpp \
|
|
../ScintillaEditBase/ScintillaQt.cpp \
|
|
../ScintillaEditBase/ScintillaEditBase.cpp \
|
|
../../src/XPM.cxx \
|
|
../../src/ViewStyle.cxx \
|
|
../../src/UniConversion.cxx \
|
|
../../src/Style.cxx \
|
|
../../src/Selection.cxx \
|
|
../../src/ScintillaBase.cxx \
|
|
../../src/RunStyles.cxx \
|
|
../../src/RESearch.cxx \
|
|
../../src/PositionCache.cxx \
|
|
../../src/PerLine.cxx \
|
|
../../src/LineMarker.cxx \
|
|
../../src/KeyMap.cxx \
|
|
../../src/Indicator.cxx \
|
|
../../src/ExternalLexer.cxx \
|
|
../../src/Editor.cxx \
|
|
../../src/Document.cxx \
|
|
../../src/Decoration.cxx \
|
|
../../src/ContractionState.cxx \
|
|
../../src/CharClassify.cxx \
|
|
../../src/CellBuffer.cxx \
|
|
../../src/Catalogue.cxx \
|
|
../../src/CaseFolder.cxx \
|
|
../../src/CaseConvert.cxx \
|
|
../../src/CallTip.cxx \
|
|
../../src/AutoComplete.cxx \
|
|
../../lexlib/WordList.cxx \
|
|
../../lexlib/StyleContext.cxx \
|
|
../../lexlib/PropSetSimple.cxx \
|
|
../../lexlib/LexerSimple.cxx \
|
|
../../lexlib/LexerNoExceptions.cxx \
|
|
../../lexlib/LexerModule.cxx \
|
|
../../lexlib/LexerBase.cxx \
|
|
../../lexlib/CharacterSet.cxx \
|
|
../../lexlib/CharacterCategory.cxx \
|
|
../../lexlib/Accessor.cxx \
|
|
../../lexers/*.cxx
|
|
|
|
HEADERS += \
|
|
ScintillaEdit.h \
|
|
ScintillaDocument.h \
|
|
../ScintillaEditBase/ScintillaEditBase.h \
|
|
../ScintillaEditBase/ScintillaQt.h
|
|
|
|
OTHER_FILES +=
|
|
|
|
INCLUDEPATH += ../ScintillaEditBase ../../include ../../src ../../lexlib
|
|
|
|
DEFINES += SCINTILLA_QT=1 MAKING_LIBRARY=1 SCI_LEXER=1 _CRT_SECURE_NO_DEPRECATE=1
|
|
|
|
DESTDIR = ../../bin
|
|
DLLDESTDIR = ../../bin
|
|
|
|
macx {
|
|
QMAKE_LFLAGS_SONAME = -Wl,-install_name,@executable_path/../Frameworks/
|
|
}
|