mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-14 10:21:51 -04:00
16 lines
315 B
CMake
16 lines
315 B
CMake
cmake_minimum_required(VERSION 3.28)
|
|
project(skeldal)
|
|
|
|
# Najít SDL2 knihovnu
|
|
find_package(SDL2 REQUIRED)
|
|
|
|
|
|
include_directories(platform libs)
|
|
|
|
|
|
include_directories( ${SDL2_INCLUDE_DIRS})
|
|
add_compile_options(-funsigned-char)
|
|
enable_testing()
|
|
add_subdirectory(libs)
|
|
add_subdirectory(platform)
|
|
add_subdirectory(game)
|