1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/premake/projects/testdrawchessboard.lua Sun Nov 10 00:38:37 2013 -0500
1.3 @@ -0,0 +1,28 @@
1.4 +-- Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
1.5 +--
1.6 +-- This software is provided 'as-is', without any express or implied
1.7 +-- warranty. In no event will the authors be held liable for any damages
1.8 +-- arising from the use of this software.
1.9 +--
1.10 +-- Permission is granted to anyone to use this software for any purpose,
1.11 +-- including commercial applications, and to alter it and redistribute it
1.12 +-- freely.
1.13 +--
1.14 +-- Meta-build system using premake created and maintained by
1.15 +-- Benjamin Henning <b.henning@digipen.edu>
1.16 +
1.17 +--[[
1.18 +testchessboard.lua
1.19 +
1.20 + This file defines the testchessboard test project. It depends on the SDL2main
1.21 + and SDL2 projects. It will not build on iOS or Cygwin.
1.22 +]]
1.23 +
1.24 +SDL_project "testchessboard"
1.25 + SDL_kind "ConsoleApp"
1.26 + SDL_notos "ios|cygwin"
1.27 + SDL_language "C"
1.28 + SDL_sourcedir "../test"
1.29 + SDL_projectLocation "tests"
1.30 + SDL_projectDependencies { "SDL2main", "SDL2" }
1.31 + SDL_files { "/testdrawchessboard.*" }
1.32 \ No newline at end of file