diff --git a/CMakeLists.txt b/CMakeLists.txt index 6896d27..908b480 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) # cmake setup begin project(MushMachine C CXX) diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index fce4a11..8e7400b 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) # external libs diff --git a/external/SquirrelNoise/CMakeLists.txt b/external/SquirrelNoise/CMakeLists.txt index 0d455c4..0a55103 100644 --- a/external/SquirrelNoise/CMakeLists.txt +++ b/external/SquirrelNoise/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(SquirrelNoise) diff --git a/external/entt.cmake b/external/entt.cmake index 7a55ed2..a977e07 100644 --- a/external/entt.cmake +++ b/external/entt.cmake @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) add_library(entt INTERFACE) target_include_directories(entt INTERFACE "${CMAKE_CURRENT_LIST_DIR}/entt/src") target_compile_features(entt INTERFACE cxx_std_17) diff --git a/external/glm.cmake b/external/glm.cmake index fa6b0f3..fdde21f 100644 --- a/external/glm.cmake +++ b/external/glm.cmake @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) add_library(glm INTERFACE) target_include_directories(glm INTERFACE "${CMAKE_CURRENT_LIST_DIR}/glm") diff --git a/external/icon_font_cpp_headers.cmake b/external/icon_font_cpp_headers.cmake index 47a6864..9a5cb52 100644 --- a/external/icon_font_cpp_headers.cmake +++ b/external/icon_font_cpp_headers.cmake @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) add_library(icon_font_cpp_headers INTERFACE) target_include_directories(icon_font_cpp_headers INTERFACE "${CMAKE_CURRENT_LIST_DIR}/IconFontCppHeaders/") diff --git a/external/imgui/CMakeLists.txt b/external/imgui/CMakeLists.txt index 667286c..6c5e20c 100644 --- a/external/imgui/CMakeLists.txt +++ b/external/imgui/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(imgui C CXX) diff --git a/external/physfs/CMakeLists.txt b/external/physfs/CMakeLists.txt index ce91d0c..c679991 100644 --- a/external/physfs/CMakeLists.txt +++ b/external/physfs/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) set(PHYSFS_BUILD_SHARED FALSE CACHE INTERNAL "") set(PHYSFS_BUILD_TEST FALSE CACHE INTERNAL "") diff --git a/external/soloud/CMakeLists.txt b/external/soloud/CMakeLists.txt index fd43264..c8d2b20 100644 --- a/external/soloud/CMakeLists.txt +++ b/external/soloud/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(soloud CXX) diff --git a/external/stb/CMakeLists.txt b/external/stb/CMakeLists.txt index af65260..10d3836 100644 --- a/external/stb/CMakeLists.txt +++ b/external/stb/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(stb CXX) diff --git a/external/tracy/CMakeLists.txt b/external/tracy/CMakeLists.txt index abee898..1529ba3 100644 --- a/external/tracy/CMakeLists.txt +++ b/external/tracy/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) if(NOT EMSCRIPTEN) add_library(tracy_client diff --git a/framework/CMakeLists.txt b/framework/CMakeLists.txt index ecb3725..402c992 100644 --- a/framework/CMakeLists.txt +++ b/framework/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(framework) diff --git a/framework/common_components/CMakeLists.txt b/framework/common_components/CMakeLists.txt index 4491f04..a62c6e6 100644 --- a/framework/common_components/CMakeLists.txt +++ b/framework/common_components/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(common_components CXX) diff --git a/framework/engine/CMakeLists.txt b/framework/engine/CMakeLists.txt index 16b751d..2ef692e 100644 --- a/framework/engine/CMakeLists.txt +++ b/framework/engine/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(engine CXX) diff --git a/framework/filesystem/CMakeLists.txt b/framework/filesystem/CMakeLists.txt index 0fb2154..c9f9f22 100644 --- a/framework/filesystem/CMakeLists.txt +++ b/framework/filesystem/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(filesystem_service CXX) diff --git a/framework/imgui/CMakeLists.txt b/framework/imgui/CMakeLists.txt index 204e88b..e647c98 100644 --- a/framework/imgui/CMakeLists.txt +++ b/framework/imgui/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(imgui_lib CXX) diff --git a/framework/input/CMakeLists.txt b/framework/input/CMakeLists.txt index 2c020b9..5ca662b 100644 --- a/framework/input/CMakeLists.txt +++ b/framework/input/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(input_service CXX) diff --git a/framework/logger/CMakeLists.txt b/framework/logger/CMakeLists.txt index 4b4b827..b9442ec 100644 --- a/framework/logger/CMakeLists.txt +++ b/framework/logger/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(logger CXX) diff --git a/framework/opengl_primitives/CMakeLists.txt b/framework/opengl_primitives/CMakeLists.txt index 723ae66..60c1fd5 100644 --- a/framework/opengl_primitives/CMakeLists.txt +++ b/framework/opengl_primitives/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(opengl_primitives CXX) diff --git a/framework/opengl_renderer/CMakeLists.txt b/framework/opengl_renderer/CMakeLists.txt index f56b30b..c936abc 100644 --- a/framework/opengl_renderer/CMakeLists.txt +++ b/framework/opengl_renderer/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(opengl_renderer CXX) diff --git a/framework/organizer_scene/CMakeLists.txt b/framework/organizer_scene/CMakeLists.txt index ce36c7a..1d7e0df 100644 --- a/framework/organizer_scene/CMakeLists.txt +++ b/framework/organizer_scene/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(organizer_scene CXX) diff --git a/framework/random/CMakeLists.txt b/framework/random/CMakeLists.txt index e081ecf..fc7a05d 100644 --- a/framework/random/CMakeLists.txt +++ b/framework/random/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(random CXX) diff --git a/framework/resource_manager/CMakeLists.txt b/framework/resource_manager/CMakeLists.txt index dece6ee..4beaded 100644 --- a/framework/resource_manager/CMakeLists.txt +++ b/framework/resource_manager/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(resource_manager CXX) diff --git a/framework/s6zer/CMakeLists.txt b/framework/s6zer/CMakeLists.txt index 7e195e7..0056266 100644 --- a/framework/s6zer/CMakeLists.txt +++ b/framework/s6zer/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(s6zer CXX) diff --git a/framework/screen_director/CMakeLists.txt b/framework/screen_director/CMakeLists.txt index c497541..f7de2ab 100644 --- a/framework/screen_director/CMakeLists.txt +++ b/framework/screen_director/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(screen_director CXX) diff --git a/framework/sdl_service/CMakeLists.txt b/framework/sdl_service/CMakeLists.txt index 125f0c4..362e1b3 100644 --- a/framework/sdl_service/CMakeLists.txt +++ b/framework/sdl_service/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(sdl_service CXX) diff --git a/framework/simple_sdl_renderer/CMakeLists.txt b/framework/simple_sdl_renderer/CMakeLists.txt index 63dd1a3..bda1b96 100644 --- a/framework/simple_sdl_renderer/CMakeLists.txt +++ b/framework/simple_sdl_renderer/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(simple_sdl_renderer_service CXX) diff --git a/framework/sound/CMakeLists.txt b/framework/sound/CMakeLists.txt index 0e64e64..c859ebe 100644 --- a/framework/sound/CMakeLists.txt +++ b/framework/sound/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(sound_service CXX) diff --git a/framework/std_utils/CMakeLists.txt b/framework/std_utils/CMakeLists.txt index 8fd537c..fe5cd9d 100644 --- a/framework/std_utils/CMakeLists.txt +++ b/framework/std_utils/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(std_utils CXX) diff --git a/framework/tilemap/CMakeLists.txt b/framework/tilemap/CMakeLists.txt index 2cb2e2c..70be876 100644 --- a/framework/tilemap/CMakeLists.txt +++ b/framework/tilemap/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(tilemap CXX) diff --git a/screens/CMakeLists.txt b/screens/CMakeLists.txt index 029cb71..16e9921 100644 --- a/screens/CMakeLists.txt +++ b/screens/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(screens) diff --git a/screens/mm_logo/CMakeLists.txt b/screens/mm_logo/CMakeLists.txt index e85c466..1cefb5f 100644 --- a/screens/mm_logo/CMakeLists.txt +++ b/screens/mm_logo/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(mm_logo_screen CXX) diff --git a/systems/CMakeLists.txt b/systems/CMakeLists.txt index b11386f..68da1e0 100644 --- a/systems/CMakeLists.txt +++ b/systems/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(systems) diff --git a/systems/fast_sky_sun/CMakeLists.txt b/systems/fast_sky_sun/CMakeLists.txt index d09e333..18f15eb 100644 --- a/systems/fast_sky_sun/CMakeLists.txt +++ b/systems/fast_sky_sun/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(fast_sky_sun_system CXX) diff --git a/systems/player_velocity/CMakeLists.txt b/systems/player_velocity/CMakeLists.txt index 2956650..f047b86 100644 --- a/systems/player_velocity/CMakeLists.txt +++ b/systems/player_velocity/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(player_velocity_system CXX) diff --git a/systems/simple_velocity/CMakeLists.txt b/systems/simple_velocity/CMakeLists.txt index 002b0a6..a32d038 100644 --- a/systems/simple_velocity/CMakeLists.txt +++ b/systems/simple_velocity/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(simple_velocity_system CXX) diff --git a/systems/transform/CMakeLists.txt b/systems/transform/CMakeLists.txt index 98d9ed3..44733d6 100644 --- a/systems/transform/CMakeLists.txt +++ b/systems/transform/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.16 FATAL_ERROR) project(transfrom_system CXX)