Init, drawing walls semi-works

This commit is contained in:
Luka Jankovic 2025-06-15 17:11:20 +02:00
parent befe4a84c9
commit 09cc69d38d
8 changed files with 287 additions and 0 deletions

20
CMakeLists.txt Normal file
View file

@ -0,0 +1,20 @@
cmake_minimum_required(VERSION 3.11...3.31)
project(kubo LANGUAGES C)
set(CMAKE_C_STANDARD 99)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(RAYLIB_VERSION 5.5)
find_package(raylib ${RAYLIB_VERSION} REQUIRED)
set(SOURCES
kubo_wall.c
kubo_window.c
kubo_context.c
main.c
)
add_executable(kubo ${SOURCES})
target_link_libraries(kubo raylib)