No description
  • C 99.2%
  • CMake 0.5%
  • C++ 0.2%
  • GLSL 0.1%
Find a file
2026-04-17 00:41:08 +02:00
Core restructured cmake with glad. Added Binary path for executable 2025-12-01 22:51:16 +01:00
Selene restructured cmake with glad. Added Binary path for executable 2025-12-01 22:51:16 +01:00
.gitignore Inital Commit 2025-11-30 22:55:04 +01:00
CMakeLists.txt restructured cmake with glad. Added Binary path for executable 2025-12-01 22:51:16 +01:00
Dependencies_lib.cmake Inital Commit 2025-11-30 22:55:04 +01:00
README.md forgejo test 2026-04-17 00:41:08 +02:00
Selenepch.h Inital Commit 2025-11-30 22:55:04 +01:00

CelestiaCore - Build Instructions

Requirements

  • CMake (version 3.15 or higher)
  • A compiler (e.g. gcc)
  • Make or Ninja

The build has been tested on:

  • Linux (Arch-based) using gcc / g++
  • Windows with MinGW & MSYS2

MSYS2 Requirements

If compiling with MSYS2, these packages are probably needed.
Without them, the compiler may try to build a Linux (X11/Wayland) version instead of a Windows one:

pacman -S --needed base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake mingw-w64-x86_64-ninja

How to build and compile


git clone https://github.com/MajoraMoon/SelenEcplise.git
cd SelenEclipse

mkdir build
cd build

cmake ..

# Then either make or ninja
make

For faster compilation (may stress your CPU):

  cmake --build . --parallel

Run the Executable

After building, run the program with:

../bin/SelenEcplise

forgejo test