slouken@9998: -- Copyright (C) 1997-2016 Sam Lantinga icculus@7925: -- icculus@7925: -- This software is provided 'as-is', without any express or implied icculus@7925: -- warranty. In no event will the authors be held liable for any damages icculus@7925: -- arising from the use of this software. icculus@7925: -- icculus@7925: -- Permission is granted to anyone to use this software for any purpose, icculus@7925: -- including commercial applications, and to alter it and redistribute it icculus@7925: -- freely. icculus@7925: -- icculus@7925: -- Meta-build system using premake created and maintained by icculus@7925: -- Benjamin Henning icculus@7925: icculus@7925: --[[ icculus@7925: testshape.lua icculus@7925: icculus@7925: This file defines the testshape test project. It depends on the SDL2main icculus@7925: and SDL2 projects. It will not build on iOS or Cygwin. This project has a icculus@7925: unique SDL_copy directive, since it copies from a subdirectory and it copies icculus@7925: all the files of a specific type. icculus@7925: ]] icculus@7925: icculus@7925: SDL_project "testshape" icculus@7925: SDL_kind "ConsoleApp" icculus@7925: SDL_notos "ios|cygwin" icculus@7925: SDL_language "C" icculus@7925: SDL_sourcedir "../test" icculus@7925: SDL_projectLocation "tests" icculus@7925: -- a list of items to copy from the sourcedir to the destination icculus@7925: SDL_copy { "shapes/*.bmp" } icculus@7925: SDL_projectDependencies { "SDL2main", "SDL2" } slouken@8149: SDL_files { "/testshape.*" }