Initial commit
This commit is contained in:
commit
02afb71c84
11 changed files with 387 additions and 0 deletions
14
CMakeLists.txt
Normal file
14
CMakeLists.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
|
||||
project(biscuit_interpreter)
|
||||
|
||||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
add_executable(biscuit_interpreter)
|
||||
|
||||
target_sources( biscuit_interpreter PRIVATE
|
||||
src/main.cpp
|
||||
src/parse.cpp
|
||||
src/keywords.cpp )
|
||||
|
||||
include_directories(${CMAKE_SOURCE_DIR})
|
Loading…
Add table
Add a link
Reference in a new issue