allgames/CMakeLists.txt
2026-02-23 19:44:17 -03:00

14 lines
No EOL
352 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/animatronical/q1/a1)
add_subdirectory(games/endlauncher)
include(ExternalProject)