Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
IceCapriccio committed Nov 28, 2018
0 parents commit 2e83b77
Show file tree
Hide file tree
Showing 68 changed files with 6,287 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .idea/Compiler.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

319 changes: 319 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.12)
project(Compiler)

set(CMAKE_CXX_STANDARD 14)

add_executable(Compiler main.cpp LexAnalyse.cpp LexAnalyse.h SyntaxAnalyse.cpp SyntaxAnalyse.h)
6 changes: 6 additions & 0 deletions LexAnalyse.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//
// Created by IceCapriccio on 2018/11/18.
//

#include "LexAnalyse.h"

Loading

0 comments on commit 2e83b77

Please sign in to comment.