cscg22-gearboy

CSCG 2022 Challenge 'Gearboy'
git clone https://git.sinitax.com/sinitax/cscg22-gearboy
Log | Files | Refs | sfeed.txt

mixer.lua (1059B)


      1-- Copyright (C) 1997-2014 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--[[
     15mixer.lua
     16
     17	This file defines the mixer 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 "mixer"
     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/mixer.*", "/Info.plist",
     29		"/data/drums/ds_kick_big_amb.wav", "/data/drums/ds_brush_snare.wav",
     30		"/data/drums/ds_loose_skin_mute.wav", "/data/drums/ds_china.wav" }