Merge pull request #2 from bubba2k/v0.1

v0.1
This commit is contained in:
bubba2k 2021-11-17 19:34:30 +01:00 committed by GitHub
commit fb2183957c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 3 additions and 3 deletions

View file

@ -1,13 +1,13 @@
cmake_minimum_required(VERSION 3.10)
project(biscuit_interpreter)
project(bisquit_interpreter)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
add_executable(biscuit_interpreter src/common.hpp)
add_executable(bisquit_interpreter src/common.hpp)
target_sources( biscuit_interpreter PRIVATE
target_sources( bisquit_interpreter PRIVATE
src/main.cpp
src/parse.cpp
src/runtime.cpp