summaryrefslogtreecommitdiffstats
path: root/Source/cmExtraKateGenerator.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Replace 'foo.size() > 0' pattern with !foo.empty().Stephen Kelly2015-01-181-1/+1
|
* stringapi: Use strings for generator namesBen Boeckel2014-03-081-2/+2
|
* Kate: handle spaces in build dirAlex Neundorf2014-02-171-9/+9
| | | | | | | | They need to be escaped in the json file... I'm quite sure I tested this before, obviously I didn't test it correctly. Alex
* Kate: use cmMakefile::GetSafeDefinition() for a not-required variableAlex Neundorf2014-01-171-1/+1
| | | | | | | | | ...otherwise the generator failed in embedded projects via externalproject(), since there CMAKE_KATE_MAKE_ARGUMENT is not set. Using GetSafeDefinition() is good enough to protect against NULL-pointers. Alex
* kate: put full path to cmake into commentAlex Neundorf2013-12-291-1/+2
| | | | Alex
* kate: support also the build plugin in kate <= 4.12Alex Neundorf2013-12-291-6/+17
| | | | | | | | | With this patch, simply also the information used by the build plugin in kate <= 4.12 is put into the generated json file. The new build plugin (coming in 4.13) simply ignores this (and vice versa). Alex
* kate: the prev_target is not used by kateAlex Neundorf2013-12-291-1/+0
| | | | | | ...this was a leftover from experimenting Alex
* kate: fix ninja supportAlex Neundorf2013-12-191-10/+21
| | | | | | | ninja needs to be run from the toplevel build dir, not from the target dir, as make Alex
* kate: remove unused functionAlex Neundorf2013-12-191-44/+0
| | | | Alex
* kate: insert build targetsAlex Neundorf2013-11-251-8/+136
| | | | | | | This can be used by the build plugin in kate. Code is quite similar to the one for Eclipse. Alex
* kate: add project generator for the Kate project pluginAlex Neundorf2013-11-251-0/+244
This patch adds an extra generator for KDE's kate text editor, or better more specifically, the project plugin. Alex