Skip to content

Commit

Permalink
Adjusted docs
Browse files Browse the repository at this point in the history
  • Loading branch information
amirbawab committed Sep 11, 2017
1 parent b5fd1e7 commit 2bba922
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions docs/example.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
# Include calculator header files (e.g. same as -I flag)
include_directories(include)
include_directories(../../include)
include_directories(../../rapidjson/include)
include_directories(../../thirdparty/rapidjson/include)
# Store cpp files in a variable
file(GLOB_RECURSE CALC_PROJECT_SOURCE_FILES src/*/*.cpp)
Expand All @@ -81,7 +81,6 @@ add_executable(${CALCULATOR_PRO_EXEC} ${CALC_PROJECT_SOURCE_FILES} src/calculato
# Link library to the executable
target_link_libraries(${CALCULATOR_DEV_EXEC} easyccdev)
target_link_libraries(${CALCULATOR_PRO_EXEC} easyccpro)
```

## Lexical analysis
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# <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)
**Version**: 1.1.0
**Version**: 1.2.0

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

## About
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.
Expand Down

0 comments on commit 2bba922

Please sign in to comment.