Simple empty window

This commit is contained in:
2026-04-16 10:05:01 -04:00
parent 09623ef864
commit c9cf496c49
9 changed files with 454 additions and 0 deletions

15
CMakeLists.txt Normal file
View File

@@ -0,0 +1,15 @@
cmake_minimum_required(VERSION 3.30)
project(chkEngine LANGUAGES CXX VERSION 0.1.0)
include(cmake/deps.cmake)
include(cmake/chk.cmake)
chk_add(NAME Launcher KIND exe
HDR
"Launcher.hpp"
SRC
"Launcher.cpp"
"Main.cpp"
PUB
SDL3pp::SDL3pp
)