Skip to content

Commit

Permalink
Adding SDL3
Browse files Browse the repository at this point in the history
  • Loading branch information
Colm Vize committed Feb 6, 2023
1 parent 4a40d58 commit 803f3e4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions cmake/configs/default.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ hunter_default_version(RapidJSON VERSION 1.1.0-b557259-p0)
hunter_default_version(RapidXML VERSION 1.13)
hunter_default_version(RedisClient VERSION 0.6.1-p1)
hunter_default_version(SDL2 VERSION 2.24.0)
hunter_default_version(SDL3 VERSION v3.0.0-alpha)
hunter_default_version(SDL_image VERSION 2.0.5-p0)
hunter_default_version(SDL_mixer VERSION 2.0.4-p0)
hunter_default_version(SDL_net VERSION 2.2.0-p0)
Expand Down
23 changes: 23 additions & 0 deletions cmake/projects/SDL3/hunter.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# !!! DO NOT PLACE HEADER GUARDS HERE !!!

# Load used modules
include(hunter_add_version)
include(hunter_download)
include(hunter_pick_scheme)
include(hunter_cacheable)

hunter_add_version(
PACKAGE_NAME
SDL3
VERSION
"v3.0.0-alpha"
URL
"https://codeload.github.com/mloccy/SDL/tar.gz/refs/tags/v3.0.0-alpha"
SHA1
d7fea0137a2a5ad03182dafcc066f5c7d6ee04c4
)


hunter_pick_scheme(DEFAULT url_sha1_cmake)
hunter_cacheable(SDL3)
hunter_download(PACKAGE_NAME SDL3)

0 comments on commit 803f3e4

Please sign in to comment.