• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1-- Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
2--
3-- This software is provided 'as-is', without any express or implied
4-- warranty.  In no event will the authors be held liable for any damages
5-- arising from the use of this software.
6--
7-- Permission is granted to anyone to use this software for any purpose,
8-- including commercial applications, and to alter it and redistribute it
9-- freely.
10--
11-- Meta-build system using premake created and maintained by
12-- Benjamin Henning <b.henning@digipen.edu>
13
14--[[
15keyboard.lua
16
17	This file defines the keyboard demo project for iOS. This project is only
18	compatible on iOS and depends on SDL2. It is a windowed application.
19]]
20
21SDL_project "keyboard"
22	SDL_kind "WindowedApp"
23	SDL_os "ios"
24	SDL_language "C"
25	SDL_sourcedir "../Xcode-iOS/Demos"
26	SDL_projectLocation "Demos"
27	SDL_projectDependencies { "SDL2" }
28	SDL_files { "/src/common.*", "/src/keyboard.*", "/Info.plist", "/data/bitmapfont/kromasky_16x16.bmp" }
29