This commit is contained in:
ProgramSnail 2023-03-24 09:36:28 +03:00
parent b52397dae0
commit 7f4cd5ee9a
2 changed files with 17 additions and 0 deletions

2
.gitignore vendored
View file

@ -11,3 +11,5 @@ compile_commands.json
CTestTestfile.cmake
_deps
build

15
CMakeLists.txt Normal file
View file

@ -0,0 +1,15 @@
cmake_minimum_required(VERSION 3.10)
project(LangInterpreter)
set(CMAKE_CXX_STANDARD 17)
find_package(Catch2 2 REQUIRED)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
# add_executable(interpreter_tests tests/tests.cpp)
# target_link_libraries(tests PRIVATE Catch2::Catch2WithMain)
# add_executable(lang_interpreter src/main.cpp)