diff --git a/docs/example.md b/docs/example.md index 555ae7c..028e75b 100644 --- a/docs/example.md +++ b/docs/example.md @@ -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) @@ -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 diff --git a/docs/index.md b/docs/index.md index 62545ef..7661b20 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,8 +1,8 @@ # EasyCC-C++ logo [![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.