29 lines
918 B
Markdown
29 lines
918 B
Markdown
# GraphC - visual programming tool
|
|
When i was working on my compiler project, i understood that AST processing code isn't clear even for me because of hundreds lines of condition branches. GraphC is GUI editor of condition trees. It generates optimized AST processing code in C.
|
|
GUI is based on [Dear ImGui](https://github.com/ocornut/imgui) and [SDL](https://github.com/libsdl-org/sdlwiki)
|
|
|
|
|
|
## Installation
|
|
1. Clone the repository
|
|
```shell
|
|
git clone --recurse-submodules https://github.com/Timerix22/GraphC
|
|
```
|
|
2. Install **SDL2** from package manager or compile it from source
|
|
```shell
|
|
cd SDL2
|
|
./configute
|
|
make -j [number of cpu cores]
|
|
make install
|
|
# on windows
|
|
mkdir ../libs
|
|
cp ./build/.libs/*.dll ../libs/
|
|
```
|
|
If it didn't work, read [SDL docs](SDL2/docs/README.md) and [INSTALL.txt](SDL2/INSTALL.txt)).
|
|
|
|
3. Compile the program
|
|
```shell
|
|
make build_exec
|
|
```
|
|
|
|
4. Copy program files from `bin/*` to any directory
|