aboutsummaryrefslogtreecommitdiffhomepage
path: root/qt/ScintillaEditPy/ScintillaEditPy.pro
AgeCommit message (Collapse)AuthorFilesLines
2021-11-12Remove ScintillaEditPy as its prerequisites are unsupported.Neil1-128/+0
2021-07-03Remove remnants of support for including lexers in Scintilla.Neil1-1/+1
2019-12-30gcc 9 has a new warning deprecated-copy which occurs many times in Qt headers.Neil1-1/+1
Turn off this warning as can't change system headers.
2018-12-14Stop specifying -std:c++latest as that is no longer needed to enable C++17 withNeil1-1/+0
MSVC 2017 and Qt 5.12 and it caused duplicate flag warnings.
2018-01-28Allow C++17 in all build and project files.Neil1-2/+2
2017-06-15Avoid warnings from G++ 7 for ScintillaEditPy in code generated by Shiboken.Neil1-1/+3
2017-06-14Use $$files instead of bare wildcard to support including in a parent project.Neil1-3/+4
2017-06-12Removed unused functions and methods from Platform.h.Neil1-9/+2
Replaced Platform::Clamp with Sci::clamp but will later change this to std::clamp once on full C++17 compilers. Drop MouseButtonBounce workaround for very early GTK+/Linux.
2016-04-28Fixes for problems with C++11 <regex>.Neil Hodgson1-0/+9
For Qt on Unix, set to build as C++11. Avoid deprecation warnings in PySide. For GTK+ allow turning off C++11 <regex> with make NO_CXX11_REGEX=1.
2016-01-22For Qt, release builds have assertions turned off.John Ehresman1-0/+3
2014-08-06Fix the platform scope to work on Linux.Neil1-1/+1
2014-08-06Bug [#1635]. Make build on FreeBSD 9.2.Neil1-1/+4
2013-11-07Feature [feature-requests:#1544]. Qt build system fixes for PySide separate ↵nyamatongwe1-2/+2
from shiboken. From Mark Yen.
2013-05-06Bug: [#1448]. Detect QT 5.x and add widgets to QT to allow building.Neil Hodgson1-0/+1
2012-05-27On Linux, disable warnings that occur in PySide generated code or PySide headersNeil Hodgson1-0/+1
included by that code. This is done by changing the compile flags on all files which is unfortunate but the warnings are not that important and will trigger for most code when building for GTK+ or Windows native. empty-body occurs for code that looks like "{}". unused-parameter occurs when a function parameter is not used. This change enables the scite/scripts/checkbuildlinux.sh script to run without any warning messages.
2012-05-17Qt platform layer added. Based on an implementation from Jason Haslamnyamatongwe1-0/+116
at Scientific Toolworks, Inc. with additions performed for Wingware.