voxelotl-engine/CMakeLists.txt

8 lines
285 B
CMake
Raw Permalink Normal View History

2024-08-05 00:42:03 +00:00
cmake_minimum_required(VERSION 3.24)
2024-08-30 08:54:58 +00:00
set(CMAKE_OSX_DEPLOYMENT_TARGET "13.6" CACHE STRING "Minimum MacOS version" FORCE)
2024-08-05 05:43:51 +00:00
set(CMAKE_Swift_LANGUAGE_VERSION 5)
2024-09-03 09:00:28 +00:00
project(voxelotl LANGUAGES C OBJC Swift VERSION "0.1.0")
2024-08-05 00:42:03 +00:00
add_subdirectory(External/SDLSwift)
2024-08-05 00:42:03 +00:00
add_subdirectory(Sources/Voxelotl)