An example program that combines the Cyth programming language with Raylib, allowing direct access to Raylib functions from a Cyth script file.
Note: This project is incomplete. Some Raylib functions are missing or only partially implemented; this is intended purely as an example.
To build CythRay, you will need to have CMake and gcc/clang/MSVC installed.
Run the following commands from the root directory (in a terminal):
mkdir build
cd build
cmake ..
makeRun the following commands from the root directory (in a terminal):
Xcode project:
mkdir build
cd build
cmake -G Xcode ..
Then, in the build directory, open cythray.xcodeproj in Xcode.
Makefile:
mkdir build
cd build
cmake ..
makeRun the following commands from the root directory (in a terminal):
Visual Studio 2022 project:
cmake.exe -S . -B build -G "Visual Studio 17 2022"
Visual Studio 2026 project:
cmake.exe -S . -B build -G "Visual Studio 18 2026"
Then, in the build directory, open cythray.sln / cythray.slnx in Visual Studio.
