sKit  0.0.9
All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages

Personal creative coding toolkit / framework. Can be used with or without a graphics rendering framework.

Dependencies

The only dependencies are:

GLM will automatically be pulled if not installed. SDL3 will always be pulled, as it is still in preview.

Building

Required:

  • CMake 3.21
  • C++23

CMake

git clone https://github.com/somecho/sKit
cd sKit
cmake -B build -DCMAKE_BUILD_TYPE=RELEASE
cmake --build build

Can easily be opened with Visual Studio.

Using the library

With CMake FetchContent

The recommended way to use this library is with CMake.

include(FetchContent)
FetchContent_Declare(
skit
GIT_REPOSITORY https://github.com/somecho/sKit
GIT_TAG main
)
FetchContent_MakeAvailable(skit)
target_link_libraries(YOUR_PROJECT PRIVATE sKit)

MIT License, Copyright © 2024 Somē Cho