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

14
CMakeLists.txt Normal file
View File

@@ -0,0 +1,14 @@
# Sets miniumum CMake and C++ Standard version #
cmake_minimum_required (VERSION 3.16)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
project(LXC_Project LANGUAGES CXX)
# Adds the sub-directories of all of the binaries #
add_subdirectory(Lexer)
# The app subdirectory #
add_subdirectory(LXC)