Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisg89 committed Jun 7, 2022
0 parents commit a30d7d8
Show file tree
Hide file tree
Showing 11 changed files with 18,313 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build/
.vscode/
22 changes: 22 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
cmake_minimum_required(VERSION 3.10)

# specify the C++ standard
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED True)


set(CMAKE_BUILD_TYPE Debug)

# set the project name
project(Lexer)

# add the executable
add_executable(Lexer
main.cpp)

TARGET_LINK_LIBRARIES( Lexer
)

add_subdirectory(fsm)
add_subdirectory(catch)

1 change: 1 addition & 0 deletions Lexer.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

4 changes: 4 additions & 0 deletions catch/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
add_library(catch
INTERFACE)

target_include_directories(catch INTERFACE include/)
Loading

0 comments on commit a30d7d8

Please sign in to comment.