lang_2023/CMakeLists.txt

18 lines
394 B
Text
Raw Normal View History

2023-03-24 09:36:28 +03:00
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")
2023-03-26 15:20:53 +03:00
include_directories(include)
include(tree_sitter/api.h)
2023-03-24 09:36:28 +03:00
# add_executable(interpreter_tests tests/tests.cpp)
# target_link_libraries(tests PRIVATE Catch2::Catch2WithMain)
# add_executable(lang_interpreter src/main.cpp)