Added lexer tests

This commit is contained in:
Pasha Bibko
2025-07-22 20:46:42 +01:00
parent 829d4c224a
commit 4d6224529f
13 changed files with 288 additions and 25 deletions

View File

@@ -10,13 +10,15 @@ project(LXC_Project LANGUAGES CXX)
# Makes .exes be outputted within the root directory #
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR})
# Adds the G-Tests #
# Enables testing #
enable_testing()
add_subdirectory(external/googletest)
add_subdirectory(tests)
# Adds the sub-directories of all of the binaries #
add_subdirectory(Lexer)
# The app subdirectory #
add_subdirectory(LXC)
# Compiles the tests #
add_subdirectory(tests)