author | Sam Lantinga |
Tue, 26 May 2015 06:27:46 -0700 | |
changeset 9619 | b94b6d0bff0f |
parent 8149 | 681eb46b8ac4 |
child 9998 | f67cf37e9cd4 |
permissions | -rwxr-xr-x |
slouken@9619 | 1 |
-- Copyright (C) 1997-2015 Sam Lantinga <slouken@libsdl.org> |
icculus@7925 | 2 |
-- |
icculus@7925 | 3 |
-- This software is provided 'as-is', without any express or implied |
icculus@7925 | 4 |
-- warranty. In no event will the authors be held liable for any damages |
icculus@7925 | 5 |
-- arising from the use of this software. |
icculus@7925 | 6 |
-- |
icculus@7925 | 7 |
-- Permission is granted to anyone to use this software for any purpose, |
icculus@7925 | 8 |
-- including commercial applications, and to alter it and redistribute it |
icculus@7925 | 9 |
-- freely. |
icculus@7925 | 10 |
-- |
icculus@7925 | 11 |
-- Meta-build system using premake created and maintained by |
icculus@7925 | 12 |
-- Benjamin Henning <b.henning@digipen.edu> |
icculus@7925 | 13 |
|
icculus@7925 | 14 |
--[[ |
icculus@7925 | 15 |
SDL2main.lua |
icculus@7925 | 16 |
|
icculus@7925 | 17 |
This file defines the SDL2main project which builds the SDL2main static |
icculus@7925 | 18 |
library for Windows and Mac. This project is primarily for everything but |
icculus@7925 | 19 |
Linux. |
icculus@7925 | 20 |
]] |
icculus@7925 | 21 |
|
icculus@7925 | 22 |
SDL_project "SDL2main" |
icculus@7925 | 23 |
SDL_kind "StaticLib" |
icculus@7925 | 24 |
SDL_language "C" |
icculus@7925 | 25 |
SDL_sourcedir "../src" |
icculus@7925 | 26 |
SDL_dependency "windows" |
icculus@7925 | 27 |
SDL_os "windows|mingw" |
icculus@7925 | 28 |
SDL_paths { "/main/windows/" } |
icculus@7925 | 29 |
SDL_dependency "macosx or ios" |
icculus@7925 | 30 |
SDL_os "macosx|ios|cygwin" |
slouken@8149 | 31 |
SDL_paths { "/main/dummy/" } |