some non functional tests

This commit is contained in:
jorenchik
2024-11-10 12:24:54 +02:00
parent f7f3ac5d4c
commit f99d44b69e
9 changed files with 100150 additions and 29 deletions

View File

@@ -1,9 +1,3 @@
# Set sources
set(
SOURCES
main.cpp
)
add_library(
api
lexer.cpp
@@ -12,7 +6,7 @@ add_library(
stringUtils.cpp
)
add_executable(transpiler ${SOURCES})
add_executable(transpiler main.cpp)
target_link_libraries(transpiler api)
target_compile_options(transpiler PRIVATE -Wall -Wextra -Wpedantic)