finish design, ready to write

This commit is contained in:
2024-07-29 03:38:03 +00:00
parent 596c404b98
commit c62ed9d3ce
12 changed files with 200 additions and 1 deletions

View File

@ -21,6 +21,12 @@ set_target_properties(interpreter
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}"
)
add_executable(code src/main.cpp)
set_target_properties(code
PROPERTIES
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}"
)
# Enable sanitizer for debug builds
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")