Files
engine/CMakeLists.txt

16 lines
282 B
CMake
Raw Permalink Normal View History

2026-04-16 10:05:01 -04:00
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
)