Added google testing library

This commit is contained in:
Pasha Bibko
2025-07-22 19:13:09 +01:00
parent 9fb3816160
commit 829d4c224a
5 changed files with 32 additions and 0 deletions

View File

@@ -10,6 +10,11 @@ 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 #
enable_testing()
add_subdirectory(external/googletest)
add_subdirectory(tests)
# Adds the sub-directories of all of the binaries #
add_subdirectory(Lexer)