Files
oatmeal/CMakeLists.txt
2026-04-11 17:29:03 -04:00

17 lines
386 B
CMake

cmake_minimum_required(VERSION 3.28)
project(oatmeal)
set(CMAKE_CXX_STANDARD 20)
# Include the libary
add_subdirectory(oatmeal)
file(GLOB CMAKE_FILES "${CMAKE_CURRENT_SOURCE_DIR}/cmake/*.cmake")
foreach(cmake_file ${CMAKE_FILES})
include(${cmake_file})
endforeach()
add_subdirectory(examples/shared)
add_subdirectory(examples/basicGLFWWindow)
add_subdirectory(examples/logging)