Bunny mark intial files added

Need to add data folder still.
This commit is contained in:
2024-10-07 20:15:20 +00:00
parent fab958c963
commit 8aa0e38486
3 changed files with 156 additions and 0 deletions

View File

@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 3.21)
project(bunnymark LANGUAGES C)
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Debug)
endif()
add_subdirectory($ENV{TWNROOT} $ENV{TWNBUILDDIR})
set(SOURCE_FILES
game.c
state.h
)
use_townengine(${PROJECT_NAME} "${SOURCE_FILES}" ${CMAKE_CURRENT_SOURCE_DIR})