allgames/CMakeLists.txt
kin-fuyuki 1df1cef78f
changed some stuf around lol
wow i didnt know that kate had extended git message.
this is rlly cool rlly
2026-03-11 02:25:52 -03:00

16 lines
No EOL
418 B
CMake

cmake_minimum_required(VERSION 3.20)
project(games)
set(CMAKE_CXX_FLAGS "-std=c++26 -Wno-error -Oz")
if(WIN32)
set(PLATFORM_DIR "windows")
else()
set(PLATFORM_DIR "linux")
endif()
add_subdirectory(engine)
add_subdirectory(games/forespend)
add_subdirectory(games/pretend)
add_subdirectory(games/animatronical/q1/a1)
add_subdirectory(games/endlauncher)
add_subdirectory(apps/kstralight)
include(ExternalProject)