From 3f859332c8e345ef3a35e24ab8ee3617cb477df7 Mon Sep 17 00:00:00 2001 From: spicyjpeg Date: Tue, 11 Oct 2022 11:22:30 +0200 Subject: Bump required CMake version to 3.21 --- examples/graphics/balls/CMakeLists.txt | 4 ++-- examples/graphics/billboard/CMakeLists.txt | 4 ++-- examples/graphics/fpscam/CMakeLists.txt | 4 ++-- examples/graphics/gte/CMakeLists.txt | 4 ++-- examples/graphics/hdtv/CMakeLists.txt | 4 ++-- examples/graphics/render2tex/CMakeLists.txt | 4 ++-- examples/graphics/rgb24/CMakeLists.txt | 4 ++-- examples/graphics/tilesasm/CMakeLists.txt | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) (limited to 'examples/graphics') diff --git a/examples/graphics/balls/CMakeLists.txt b/examples/graphics/balls/CMakeLists.txt index deee473..03c2720 100644 --- a/examples/graphics/balls/CMakeLists.txt +++ b/examples/graphics/balls/CMakeLists.txt @@ -1,7 +1,7 @@ # PSn00bSDK example CMake script # (C) 2021 spicyjpeg - MPL licensed -cmake_minimum_required(VERSION 3.20) +cmake_minimum_required(VERSION 3.21) project( balls @@ -12,7 +12,7 @@ project( ) file(GLOB _sources *.c) -psn00bsdk_add_executable(balls STATIC ${_sources}) +psn00bsdk_add_executable(balls GPREL ${_sources}) #psn00bsdk_add_cd_image(balls_iso balls iso.xml DEPENDS balls) psn00bsdk_target_incbin(balls PRIVATE ball16c ball16c.tim) diff --git a/examples/graphics/billboard/CMakeLists.txt b/examples/graphics/billboard/CMakeLists.txt index 4fc668d..5288896 100644 --- a/examples/graphics/billboard/CMakeLists.txt +++ b/examples/graphics/billboard/CMakeLists.txt @@ -1,7 +1,7 @@ # PSn00bSDK example CMake script # (C) 2021 spicyjpeg - MPL licensed -cmake_minimum_required(VERSION 3.20) +cmake_minimum_required(VERSION 3.21) project( billboard @@ -12,7 +12,7 @@ project( ) file(GLOB _sources *.c) -psn00bsdk_add_executable(billboard STATIC ${_sources}) +psn00bsdk_add_executable(billboard GPREL ${_sources}) #psn00bsdk_add_cd_image(billboard_iso billboard iso.xml DEPENDS billboard) psn00bsdk_target_incbin(billboard PRIVATE tim_image texture64.tim) diff --git a/examples/graphics/fpscam/CMakeLists.txt b/examples/graphics/fpscam/CMakeLists.txt index cb0c086..2c21296 100644 --- a/examples/graphics/fpscam/CMakeLists.txt +++ b/examples/graphics/fpscam/CMakeLists.txt @@ -1,7 +1,7 @@ # PSn00bSDK example CMake script # (C) 2021 spicyjpeg - MPL licensed -cmake_minimum_required(VERSION 3.20) +cmake_minimum_required(VERSION 3.21) project( fpscam @@ -12,7 +12,7 @@ project( ) file(GLOB _sources *.c) -psn00bsdk_add_executable(fpscam STATIC ${_sources}) +psn00bsdk_add_executable(fpscam GPREL ${_sources}) #psn00bsdk_add_cd_image(fpscam_iso fpscam iso.xml DEPENDS fpscam) install(FILES ${PROJECT_BINARY_DIR}/fpscam.exe TYPE BIN) diff --git a/examples/graphics/gte/CMakeLists.txt b/examples/graphics/gte/CMakeLists.txt index 90d897b..e9ab4f3 100644 --- a/examples/graphics/gte/CMakeLists.txt +++ b/examples/graphics/gte/CMakeLists.txt @@ -1,7 +1,7 @@ # PSn00bSDK example CMake script # (C) 2021 spicyjpeg - MPL licensed -cmake_minimum_required(VERSION 3.20) +cmake_minimum_required(VERSION 3.21) project( gte @@ -12,7 +12,7 @@ project( ) file(GLOB _sources *.c) -psn00bsdk_add_executable(gte STATIC ${_sources}) +psn00bsdk_add_executable(gte GPREL ${_sources}) #psn00bsdk_add_cd_image(gte_iso gte iso.xml DEPENDS gte) psn00bsdk_target_incbin(gte PRIVATE tim_texture texture.tim) diff --git a/examples/graphics/hdtv/CMakeLists.txt b/examples/graphics/hdtv/CMakeLists.txt index 804b096..78411f5 100644 --- a/examples/graphics/hdtv/CMakeLists.txt +++ b/examples/graphics/hdtv/CMakeLists.txt @@ -1,7 +1,7 @@ # PSn00bSDK example CMake script # (C) 2021 spicyjpeg - MPL licensed -cmake_minimum_required(VERSION 3.20) +cmake_minimum_required(VERSION 3.21) project( hdtv @@ -12,7 +12,7 @@ project( ) file(GLOB _sources *.c) -psn00bsdk_add_executable(hdtv STATIC ${_sources}) +psn00bsdk_add_executable(hdtv GPREL ${_sources}) #psn00bsdk_add_cd_image(hdtv_iso hdtv iso.xml DEPENDS hdtv) install(FILES ${PROJECT_BINARY_DIR}/hdtv.exe TYPE BIN) diff --git a/examples/graphics/render2tex/CMakeLists.txt b/examples/graphics/render2tex/CMakeLists.txt index a97cf02..1ef36e0 100644 --- a/examples/graphics/render2tex/CMakeLists.txt +++ b/examples/graphics/render2tex/CMakeLists.txt @@ -1,7 +1,7 @@ # PSn00bSDK example CMake script # (C) 2021 spicyjpeg - MPL licensed -cmake_minimum_required(VERSION 3.20) +cmake_minimum_required(VERSION 3.21) project( render2tex @@ -12,7 +12,7 @@ project( ) file(GLOB _sources *.c) -psn00bsdk_add_executable(render2tex STATIC ${_sources}) +psn00bsdk_add_executable(render2tex GPREL ${_sources}) #psn00bsdk_add_cd_image(render2tex_iso render2tex iso.xml DEPENDS render2tex) psn00bsdk_target_incbin(render2tex PRIVATE tim_blendpattern blendpattern-16c.tim) diff --git a/examples/graphics/rgb24/CMakeLists.txt b/examples/graphics/rgb24/CMakeLists.txt index 9565b8b..de81db0 100644 --- a/examples/graphics/rgb24/CMakeLists.txt +++ b/examples/graphics/rgb24/CMakeLists.txt @@ -1,7 +1,7 @@ # PSn00bSDK example CMake script # (C) 2021 spicyjpeg - MPL licensed -cmake_minimum_required(VERSION 3.20) +cmake_minimum_required(VERSION 3.21) project( rgb24 @@ -12,7 +12,7 @@ project( ) file(GLOB _sources *.c) -psn00bsdk_add_executable(rgb24 STATIC ${_sources}) +psn00bsdk_add_executable(rgb24 GPREL ${_sources}) #psn00bsdk_add_cd_image(rgb24_iso rgb24 iso.xml DEPENDS rgb24) psn00bsdk_target_incbin(rgb24 PRIVATE tim_image bunpattern.tim) diff --git a/examples/graphics/tilesasm/CMakeLists.txt b/examples/graphics/tilesasm/CMakeLists.txt index 5b8de96..21ceafc 100644 --- a/examples/graphics/tilesasm/CMakeLists.txt +++ b/examples/graphics/tilesasm/CMakeLists.txt @@ -1,7 +1,7 @@ # PSn00bSDK example CMake script # (C) 2021 spicyjpeg - MPL licensed -cmake_minimum_required(VERSION 3.20) +cmake_minimum_required(VERSION 3.21) project( tilesasm @@ -12,7 +12,7 @@ project( ) file(GLOB _sources *.s *.c) -psn00bsdk_add_executable(tilesasm STATIC ${_sources}) +psn00bsdk_add_executable(tilesasm GPREL ${_sources}) #psn00bsdk_add_cd_image(tilesasm_iso tilesasm iso.xml DEPENDS tilesasm) psn00bsdk_target_incbin(tilesasm PRIVATE tim_tileset tiles_256.tim) -- cgit v1.2.3