bgfx/premake/example-common.lua

24 lines
451 B
Lua
Raw Normal View History

2013-05-18 06:39:08 +04:00
--
2014-02-11 10:07:04 +04:00
-- Copyright 2010-2014 Branimir Karadzic. All rights reserved.
2013-05-18 06:39:08 +04:00
-- License: http://www.opensource.org/licenses/BSD-2-Clause
--
project ("example-common")
2013-05-18 06:39:08 +04:00
uuid ("21cc0e26-bf62-11e2-a01e-0291bd4c8125")
kind "StaticLib"
includedirs {
BX_DIR .. "include",
BGFX_DIR .. "include",
BGFX_DIR .. "3rdparty",
}
2014-01-31 08:31:49 +04:00
defines {
-- "ENTRY_CONFIG_USE_SDL=1",
}
2013-05-18 06:39:08 +04:00
files {
BGFX_DIR .. "examples/common/**.cpp",
BGFX_DIR .. "examples/common/**.h",
}