2012-04-04 07:30:07 +04:00
|
|
|
--
|
2013-04-17 10:12:03 +04:00
|
|
|
-- Copyright 2010-2013 Branimir Karadzic. All rights reserved.
|
2012-04-04 07:30:07 +04:00
|
|
|
-- License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
--
|
|
|
|
|
|
|
|
solution "bgfx"
|
|
|
|
configurations {
|
|
|
|
"Debug",
|
|
|
|
"Release",
|
|
|
|
}
|
|
|
|
|
|
|
|
platforms {
|
|
|
|
"x32",
|
|
|
|
"x64",
|
|
|
|
"Xbox360",
|
2013-04-13 11:26:41 +04:00
|
|
|
"Native", -- for targets where bitness is not specified
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
language "C++"
|
|
|
|
|
2012-06-02 06:55:56 +04:00
|
|
|
BGFX_DIR = (path.getabsolute("..") .. "/")
|
|
|
|
local BGFX_BUILD_DIR = (BGFX_DIR .. ".build/")
|
|
|
|
local BGFX_THIRD_PARTY_DIR = (BGFX_DIR .. "3rdparty/")
|
2012-12-09 03:24:51 +04:00
|
|
|
BX_DIR = (BGFX_DIR .. "../bx/")
|
2012-09-17 04:36:08 +04:00
|
|
|
|
2013-02-27 09:27:31 +04:00
|
|
|
defines {
|
|
|
|
"BX_CONFIG_ENABLE_MSVC_LEVEL4_WARNINGS=1"
|
|
|
|
}
|
|
|
|
|
2012-12-09 10:24:16 +04:00
|
|
|
dofile (BX_DIR .. "premake/toolchain.lua")
|
|
|
|
toolchain(BGFX_BUILD_DIR, BGFX_THIRD_PARTY_DIR)
|
2012-04-04 07:30:07 +04:00
|
|
|
|
2012-06-02 08:56:20 +04:00
|
|
|
function copyLib()
|
|
|
|
end
|
|
|
|
|
2013-01-27 04:30:02 +04:00
|
|
|
function exampleProject(_name, _uuid)
|
|
|
|
|
|
|
|
project ("example-" .. _name)
|
|
|
|
uuid (_uuid)
|
|
|
|
kind "WindowedApp"
|
|
|
|
|
|
|
|
configuration {}
|
|
|
|
|
|
|
|
debugdir (BGFX_DIR .. "examples/runtime/")
|
|
|
|
|
|
|
|
includedirs {
|
|
|
|
BX_DIR .. "include",
|
|
|
|
BGFX_DIR .. "include",
|
2013-04-25 08:01:11 +04:00
|
|
|
BGFX_DIR .. "3rdparty",
|
2013-05-24 09:07:54 +04:00
|
|
|
BGFX_DIR .. "examples/common",
|
2013-01-27 04:30:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
files {
|
|
|
|
BGFX_DIR .. "examples/" .. _name .. "/**.cpp",
|
|
|
|
BGFX_DIR .. "examples/" .. _name .. "/**.h",
|
|
|
|
}
|
|
|
|
|
|
|
|
links {
|
|
|
|
"bgfx",
|
2013-06-05 08:43:43 +04:00
|
|
|
"example-common",
|
2013-01-27 04:30:02 +04:00
|
|
|
}
|
|
|
|
|
2013-10-11 09:57:42 +04:00
|
|
|
configuration { "vs*" }
|
2013-10-12 07:38:47 +04:00
|
|
|
linkoptions {
|
|
|
|
"/ignore:4199", -- LNK4199: /DELAYLOAD:*.dll ignored; no imports found from *.dll
|
|
|
|
}
|
2013-10-11 09:57:42 +04:00
|
|
|
links { -- this is needed only for testing with GLES2/3 on Windows with VS2008
|
|
|
|
"DelayImp",
|
|
|
|
}
|
|
|
|
|
|
|
|
configuration { "vs2010" }
|
|
|
|
linkoptions { -- this is needed only for testing with GLES2/3 on Windows with VS201x
|
|
|
|
"/DELAYLOAD:\"libEGL.dll\"",
|
|
|
|
"/DELAYLOAD:\"libGLESv2.dll\"",
|
|
|
|
}
|
|
|
|
|
2013-04-17 10:12:03 +04:00
|
|
|
configuration { "android*" }
|
|
|
|
kind "SharedLib"
|
|
|
|
targetextension ".so"
|
|
|
|
links {
|
|
|
|
"EGL",
|
|
|
|
"GLESv2",
|
|
|
|
}
|
|
|
|
|
2013-05-19 02:28:35 +04:00
|
|
|
configuration { "nacl or nacl-arm" }
|
|
|
|
kind "ConsoleApp"
|
2013-01-27 04:30:02 +04:00
|
|
|
targetextension ".nexe"
|
|
|
|
links {
|
|
|
|
"ppapi",
|
|
|
|
"ppapi_gles2",
|
|
|
|
"pthread",
|
|
|
|
}
|
|
|
|
|
2013-05-19 02:28:35 +04:00
|
|
|
configuration { "pnacl" }
|
|
|
|
kind "ConsoleApp"
|
|
|
|
targetextension ".pexe"
|
|
|
|
links {
|
|
|
|
"ppapi",
|
|
|
|
"ppapi_gles2",
|
|
|
|
"pthread",
|
|
|
|
}
|
|
|
|
|
2013-01-27 04:30:02 +04:00
|
|
|
configuration { "linux" }
|
|
|
|
links {
|
2013-04-30 06:35:33 +04:00
|
|
|
"X11",
|
2013-01-27 04:30:02 +04:00
|
|
|
"GL",
|
|
|
|
"pthread",
|
|
|
|
}
|
|
|
|
|
2013-04-13 10:43:46 +04:00
|
|
|
configuration { "osx" }
|
2013-01-27 04:30:02 +04:00
|
|
|
files {
|
2013-08-13 07:47:41 +04:00
|
|
|
-- BGFX_DIR .. "examples/common/**.mm",
|
2013-01-27 04:30:02 +04:00
|
|
|
}
|
|
|
|
links {
|
|
|
|
"Cocoa.framework",
|
|
|
|
"OpenGL.framework",
|
2013-08-13 07:47:41 +04:00
|
|
|
"SDL2",
|
2013-01-27 04:30:02 +04:00
|
|
|
}
|
2013-04-13 12:47:30 +04:00
|
|
|
|
2013-07-22 01:44:53 +04:00
|
|
|
configuration { "ios*" }
|
|
|
|
kind "ConsoleApp"
|
2013-07-15 00:14:48 +04:00
|
|
|
files {
|
|
|
|
BGFX_DIR .. "examples/common/**.mm",
|
|
|
|
}
|
2013-07-13 09:27:46 +04:00
|
|
|
linkoptions {
|
|
|
|
"-framework CoreFoundation",
|
|
|
|
"-framework Foundation",
|
|
|
|
"-framework OpenGLES",
|
2013-07-22 01:44:53 +04:00
|
|
|
"-framework UIKit",
|
|
|
|
"-framework QuartzCore",
|
2013-07-13 09:27:46 +04:00
|
|
|
}
|
|
|
|
|
2013-04-13 12:47:30 +04:00
|
|
|
configuration { "qnx*" }
|
|
|
|
targetextension ""
|
|
|
|
links {
|
|
|
|
"EGL",
|
|
|
|
"GLESv2",
|
|
|
|
}
|
2013-04-21 10:13:44 +04:00
|
|
|
|
|
|
|
configuration {}
|
|
|
|
|
|
|
|
strip()
|
2013-01-27 04:30:02 +04:00
|
|
|
end
|
|
|
|
|
2012-06-02 06:55:56 +04:00
|
|
|
dofile "bgfx.lua"
|
2013-06-05 08:43:43 +04:00
|
|
|
dofile "example-common.lua"
|
2013-10-18 10:45:58 +04:00
|
|
|
exampleProject("00-helloworld", "ff2c8450-ebf4-11e0-9572-0800200c9a66")
|
|
|
|
exampleProject("01-cubes", "fec3bc94-e1e5-11e1-9c59-c7eeec2c1c51")
|
|
|
|
exampleProject("02-metaballs", "413b2cb4-f7db-11e1-bf5f-a716de6a022f")
|
|
|
|
exampleProject("03-raymarch", "1cede802-0220-11e2-91ba-e108de6a022f")
|
|
|
|
exampleProject("04-mesh", "546bbc76-0c4a-11e2-ab09-debcdd6a022f")
|
|
|
|
exampleProject("05-instancing", "5d3da660-1105-11e2-aece-71e4dd6a022f")
|
|
|
|
exampleProject("06-bump", "ffb23e6c-167b-11e2-81df-94c4dd6a022f")
|
|
|
|
exampleProject("07-callback", "acc53bbc-52f0-11e2-9781-ad8edd4b7d02")
|
|
|
|
exampleProject("08-update", "e011e246-5862-11e2-b202-b7cb257a7926")
|
|
|
|
exampleProject("09-hdr", "969a4626-67ee-11e2-9726-9023267a7926")
|
|
|
|
exampleProject("10-font" , "ef6fd5b3-b52a-41c2-a257-9dfe709af9e1")
|
|
|
|
exampleProject("11-fontsdf", "f4e6f96f-3daa-4c68-8df8-bf2a3ecd9092")
|
|
|
|
exampleProject("12-lod", "0512e9e6-bfd8-11e2-8e34-0291bd4c8125")
|
|
|
|
exampleProject("13-stencil", "d12d6522-37bc-11e3-b89c-e46428d43830")
|
|
|
|
exampleProject("14-shadowvolumes", "d7eb4bcc-37bc-11e3-b7a4-e46428d43830")
|
2013-01-23 10:25:47 +04:00
|
|
|
dofile "makedisttex.lua"
|
|
|
|
dofile "shaderc.lua"
|
|
|
|
dofile "texturec.lua"
|
|
|
|
dofile "geometryc.lua"
|