Skip to content

Commit 2bba922

Browse files
committed
Adjusted docs
1 parent b5fd1e7 commit 2bba922

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

docs/example.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
6666
# Include calculator header files (e.g. same as -I flag)
6767
include_directories(include)
6868
include_directories(../../include)
69-
include_directories(../../rapidjson/include)
69+
include_directories(../../thirdparty/rapidjson/include)
7070
7171
# Store cpp files in a variable
7272
file(GLOB_RECURSE CALC_PROJECT_SOURCE_FILES src/*/*.cpp)
@@ -81,7 +81,6 @@ add_executable(${CALCULATOR_PRO_EXEC} ${CALC_PROJECT_SOURCE_FILES} src/calculato
8181
# Link library to the executable
8282
target_link_libraries(${CALCULATOR_DEV_EXEC} easyccdev)
8383
target_link_libraries(${CALCULATOR_PRO_EXEC} easyccpro)
84-
8584
```
8685

8786
## Lexical analysis

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# <img src="logo.png" alt="EasyCC-C++ logo" width="200"> [![Build Status](https://travis-ci.org/amirbawab/EasyCC-CPP.svg?branch=master)](https://travis-ci.org/amirbawab/EasyCC-CPP)
2-
**Version**: 1.1.0
2+
**Version**: 1.2.0
33

44
## Github
5-
Link: [Release 1.1.0](https://github.com/amirbawab/EasyCC-CPP/releases/tag/v1.1.0)
5+
Link: [Release 1.2.0](https://github.com/amirbawab/EasyCC-CPP/releases/tag/v1.2.0)
66

77
## About
88
EasyCC C++ (Easy Compiler Compiler written in C++) is a library allowing users to easily develop their own programming language. The project does not require wrting any line of code for the lexical and syntax analysis phases. The configurations of the latters are provided as JSON files to the library. Adding the logic for a programming language is done by simply registering semantic action handlers in order to gradually build the structure of the input and eventually generating output code.

0 commit comments

Comments
 (0)