blob: 524c842d5183fd9e5dd62e8137963c1677474dfd [file] [log] [blame]
Benno Schulenbergc4b344f2014-02-23 16:07:44 +00001## Syntax highlighting for CMake files.
Benno Schulenbergfe9da942014-05-16 20:21:34 +00002
Chris Allegretta053fabd2010-04-14 02:38:56 +00003syntax "cmake" "(CMakeLists\.txt|\.cmake)$"
Mike Scalora6a2032f2016-05-25 22:13:50 +02004comment "#"
Chris Allegretta053fabd2010-04-14 02:38:56 +00005
6icolor green "^[[:space:]]*[A-Z0-9_]+"
7icolor brightyellow "^[[:space:]]*(include|include_directories|include_external_msproject)\>"
8
9icolor brightgreen "^[[:space:]]*\<((else|end)?if|else|(end)?while|(end)?foreach|break)\>"
10color brightgreen "\<(NOT|COMMAND|POLICY|TARGET|EXISTS|IS_(DIRECTORY|ABSOLUTE)|DEFINED)\>[[:space:]]"
11color brightgreen "[[:space:]]\<(OR|AND|IS_NEWER_THAN|MATCHES|(STR|VERSION_)?(LESS|GREATER|EQUAL))\>[[:space:]]"
12
13icolor brightred "^[[:space:]]*\<((end)?(function|macro)|return)"
14
15icolor cyan start="\$(\{|ENV\{)" end="\}"
16color magenta "\<(APPLE|UNIX|WIN32|CYGWIN|BORLAND|MINGW|MSVC(_IDE|60|71|80|90)?)\>"
17
18icolor brightblue "^([[:space:]]*)?#.*"
19icolor brightblue "[[:space:]]#.*"
20color ,green "[[:space:]]+$"