1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 21:07:34 +00:00

LibGLSL: Add initial GLSL parser implementation

This commit is contained in:
Poseydon42 2023-07-23 22:59:26 +01:00 committed by Jelle Raaijmakers
parent 0b6424d883
commit 29972876e4
11 changed files with 4093 additions and 0 deletions

View file

@ -1,6 +1,11 @@
set(SOURCES
AST.cpp
Compiler.cpp
Lexer.cpp
Linker.cpp
Parser.cpp
Preprocessor.cpp
Token.cpp
)
serenity_lib(LibGLSL glsl)