A modular, extensible text editor built with modern C++20 and Lua.
- Modern C++20 codebase using modules
- Lua-based configuration and plugin system
- Modular architecture with distinct API layers
- Cross-platform support (macOS, Linux, Windows)
# Clone the repository
git clone https://github.com/APConduct/kup.git
cd kup
# Build using CMake
./build.sh- CMake 3.20+
- Ninja build system
- LLVM/Clang++ toolchain
- raylib 5.5+
- sol2
- Install required tools via Homebrew:
brew install llvm cmake ninja raylib- Install MSYS2 from https://www.msys2.org or with a package manager like Chocolatey. or winget
- install the required tools with the package manager
choco install msys2 winget install --id=MSYS2.MSYS2 -ethen install the dependencies with the package manager
pacman -S mingw-w64-x86_64-clang mingw-w64-x86_64-cmake mingw-w64-x86_64-ninja mingw-w64-x86_64-raylib- Clone the repository:
git clone https://github.com/APConduct/Kup.git --recursive-submodules
cd Kup- Create build directory and configure:
cmake -B build -G Ninja \
-DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_BUILD_TYPE=Debug - Build the project:
cmake --build buildFor convenience, you can use the provided build script:
./build.shThe project uses C++20 modules and requires a modern IDE with proper support. CLion 2024.3.3 is the recommended IDE for development.
