summaryrefslogtreecommitdiff
path: root/src/contrib/SDL-3.2.20/cmake/test/main.swift
blob: 1943f7c42b087bad5f50730c478c27321d19eaa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Contributed by Piotr Usewicz (https://github.com/pusewicz) */

import SDL3

guard SDL_Init(SDL_INIT_VIDEO) else {
  fatalError("SDL_Init error: \(String(cString: SDL_GetError()))")
}

var sdlVersion = SDL_GetVersion()

print("SDL version: \(sdlVersion)")

SDL_Quit()