Initial commit

This commit is contained in:
Pasha Bibko
2025-07-19 20:48:54 +01:00
commit ab564e9649
14 changed files with 258 additions and 0 deletions

13
Lexer/CMakeLists.txt Normal file
View File

@@ -0,0 +1,13 @@
# Fetches all files for in the binary #
file (GLOB LexerSources src/*.cpp inc/*.h)
add_library(Lexer STATIC ${LexerSources})
target_include_directories (
Lexer PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/inc
)
# Creates the precompiled header for the binary #
target_include_directories(Lexer PRIVATE ${CMAKE_SOURCE_DIR}/Common)
target_precompile_headers(Lexer PRIVATE ${CMAKE_SOURCE_DIR}/Common/LXC.h)

1
Lexer/src/Lexer.cpp Normal file
View File

@@ -0,0 +1 @@
#include <LXC.h>