Skip to content

vldr/CythRay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CythRay

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.

Building

To build CythRay, you will need to have CMake and gcc/clang/MSVC installed.

Linux

Run the following commands from the root directory (in a terminal):

mkdir build
cd build
cmake ..
make

MacOS

Run 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 ..
make

Windows

Run 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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published