Added a skeleton for the lexer

This commit is contained in:
2025-09-30 16:50:33 +03:00
committed by Emin Arslan
parent 43e05597ac
commit 19b0eb48bb
7 changed files with 104 additions and 3 deletions

View File

@@ -1,3 +1,10 @@
cmake_minimum_required(VERSION 3.16)
project(lispy_stuff)
add_executable(main src/main.cpp)
set(HEADER_FILES src/include/lex.hpp)
set(SOURCE_FILES src/main.cpp)
add_executable(main ${SOURCE_FILES} ${HEADER_FILES})
target_include_directories(main PRIVATE src/include/)