Init, drawing walls semi-works
This commit is contained in:
parent
befe4a84c9
commit
09cc69d38d
8 changed files with 287 additions and 0 deletions
20
CMakeLists.txt
Normal file
20
CMakeLists.txt
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue