summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCMake/CMakeLists.txt
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2023-03-07 20:33:16 +0000
committerLinus Groh <mail@linusgroh.de>2023-03-08 14:21:37 +0000
commitbb07d678ac1286d9632efb21a182b53d7ca14607 (patch)
treeca5d4c7bf2e63ec60e6e7d217c80919b88541f13 /Userland/Libraries/LibCMake/CMakeLists.txt
parent515fca4f7a756c1c40c7a52ca25560b12d2e948b (diff)
downloadserenity-bb07d678ac1286d9632efb21a182b53d7ca14607.zip
LibCMake: Add a lexer for CMakeCache.txt
This is a totally different syntax than for regular CMake files, and also is undocumented and subject to change, but it's also nice and simple. :^)
Diffstat (limited to 'Userland/Libraries/LibCMake/CMakeLists.txt')
-rw-r--r--Userland/Libraries/LibCMake/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibCMake/CMakeLists.txt b/Userland/Libraries/LibCMake/CMakeLists.txt
index 89ac0181af..36af8b8e7e 100644
--- a/Userland/Libraries/LibCMake/CMakeLists.txt
+++ b/Userland/Libraries/LibCMake/CMakeLists.txt
@@ -1,4 +1,5 @@
set(SOURCES
+ CMakeCache/Lexer.cpp
Lexer.cpp
SyntaxHighlighter.cpp
Token.cpp