Download GX

GX is open source (MIT). Build from source or grab a prebuilt binary.

Quick Install (from source)

git clone https://github.com/afanofoghlu/GX.git
cd GX
cmake -B build && cmake --build build
./build/GX --version

🖳 Windows

Prerequisites

  • - Install Visual Studio 2019+ with "Desktop development with C++" workload
  • - Install CMake 3.15+

Build

cmake -S . -B build -G "Visual Studio 17 2022"
cmake --build build --config Release
Output: build\Release\GX.exe

🍎 macOS

Prerequisites

  • - Install Xcode Command Line Tools: xcode-select --install
  • - Install CMake: brew install cmake

Build

cmake -B build
cmake --build build
Output: build/GX

🐧 Linux

Prerequisites

  • - Ubuntu/Debian: sudo apt install build-essential cmake
  • - Fedora: sudo dnf install gcc-c++ cmake

Build

cmake -B build
cmake --build build
Output: build/GX

IDE Support

The IntelliJ-GX Plugin provides full language support for JetBrains IDEs:

  • - Syntax highlighting (all keywords, compile-time directives, annotations)
  • - Code completion and go-to-definition
  • - Debugger integration
  • - Error highlighting

Install from Settings > Plugins > Marketplace and search for "GX Language".