bgfx/scripts/genie.lua

421 lines
8.4 KiB
Lua
Raw Normal View History

2012-04-04 07:30:07 +04:00
--
2016-01-01 11:11:04 +03:00
-- Copyright 2010-2016 Branimir Karadzic. All rights reserved.
-- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2012-04-04 07:30:07 +04:00
--
2014-05-05 02:43:14 +04:00
newoption {
trigger = "with-amalgamated",
description = "Enable amalgamated build.",
2014-05-05 02:43:14 +04:00
}
2014-08-23 06:29:54 +04:00
newoption {
trigger = "with-ovr",
description = "Enable OculusVR integration.",
2014-08-23 06:29:54 +04:00
}
newoption {
trigger = "with-sdl",
description = "Enable SDL entry.",
}
2015-03-25 08:19:21 +03:00
newoption {
trigger = "with-glfw",
description = "Enable GLFW entry.",
}
2015-11-14 08:11:19 +03:00
newoption {
trigger = "with-profiler",
description = "Enable build with intrusive profiler.",
}
2015-06-09 07:16:07 +03:00
newoption {
trigger = "with-scintilla",
description = "Enable building with Scintilla editor.",
}
2014-10-20 08:29:27 +04:00
newoption {
trigger = "with-shared-lib",
description = "Enable building shared library.",
}
newoption {
trigger = "with-tools",
description = "Enable building tools.",
2014-10-20 08:29:27 +04:00
}
2012-04-04 07:30:07 +04:00
solution "bgfx"
configurations {
"Debug",
"Release",
}
if _ACTION == "xcode4" then
platforms {
"Universal",
}
else
platforms {
"x32",
"x64",
-- "Xbox360",
"Native", -- for targets where bitness is not specified
}
end
2012-04-04 07:30:07 +04:00
language "C++"
2014-09-16 07:50:35 +04:00
startproject "example-00-helloworld"
2012-04-04 07:30:07 +04:00
BGFX_DIR = path.getabsolute("..")
2016-01-10 07:30:15 +03:00
BX_DIR = os.getenv("BX_DIR")
2016-01-10 02:34:41 +03:00
local BGFX_BUILD_DIR = path.join(BGFX_DIR, ".build")
local BGFX_THIRD_PARTY_DIR = path.join(BGFX_DIR, "3rdparty")
2016-01-10 02:34:41 +03:00
if not BX_DIR then
2016-01-10 07:30:15 +03:00
BX_DIR = path.getabsolute(path.join(BGFX_DIR, "../bx"))
2016-01-10 02:34:41 +03:00
end
2012-09-17 04:36:08 +04:00
2015-12-11 09:58:31 +03:00
if not os.isdir(BX_DIR) then
print("bx not found at " .. BX_DIR)
print("For more info see: https://bkaradzic.github.io/bgfx/build.html")
os.exit()
end
2013-02-27 09:27:31 +04:00
defines {
"BX_CONFIG_ENABLE_MSVC_LEVEL4_WARNINGS=1"
}
dofile (path.join(BX_DIR, "scripts/toolchain.lua"))
if not toolchain(BGFX_BUILD_DIR, BGFX_THIRD_PARTY_DIR) then
return -- no action specified
end
2012-04-04 07:30:07 +04:00
2012-06-02 08:56:20 +04:00
function copyLib()
end
if _OPTIONS["with-sdl"] then
if os.is("windows") then
if not os.getenv("SDL2_DIR") then
print("Set SDL2_DIR enviroment variable.")
end
end
end
2015-11-14 08:11:19 +03:00
if _OPTIONS["with-profiler"] then
defines {
"ENTRY_CONFIG_PROFILER=1",
"BGFX_CONFIG_PROFILER_REMOTERY=1",
2015-11-16 17:42:56 +03:00
"_WINSOCKAPI_"
2015-11-14 08:11:19 +03:00
}
end
2014-09-11 10:01:22 +04:00
function exampleProject(_name)
2013-01-27 04:30:02 +04:00
project ("example-" .. _name)
2014-09-11 10:01:22 +04:00
uuid (os.uuid("example-" .. _name))
2013-01-27 04:30:02 +04:00
kind "WindowedApp"
configuration {}
debugdir (path.join(BGFX_DIR, "examples/runtime"))
2013-01-27 04:30:02 +04:00
includedirs {
2015-03-19 02:23:38 +03:00
path.join(BX_DIR, "include"),
path.join(BGFX_DIR, "include"),
path.join(BGFX_DIR, "3rdparty"),
path.join(BGFX_DIR, "examples/common"),
2013-01-27 04:30:02 +04:00
}
files {
2015-03-19 02:23:38 +03:00
path.join(BGFX_DIR, "examples", _name, "**.c"),
path.join(BGFX_DIR, "examples", _name, "**.cpp"),
path.join(BGFX_DIR, "examples", _name, "**.h"),
2013-01-27 04:30:02 +04:00
}
removefiles {
path.join(BGFX_DIR, "examples", _name, "**.bin.h"),
}
2013-01-27 04:30:02 +04:00
links {
"bgfx",
"example-common",
2013-01-27 04:30:02 +04:00
}
if _OPTIONS["with-sdl"] then
defines { "ENTRY_CONFIG_USE_SDL=1" }
links { "SDL2" }
2016-01-24 08:07:44 +03:00
configuration { "osx" }
libdirs { "$(SDL2_DIR)/lib" }
configuration {}
end
2015-03-25 08:19:21 +03:00
if _OPTIONS["with-glfw"] then
defines { "ENTRY_CONFIG_USE_GLFW=1" }
2016-01-24 08:07:44 +03:00
links { "glfw3" }
2015-03-25 08:19:21 +03:00
2015-04-10 17:46:49 +03:00
configuration { "linux or freebsd" }
2015-03-25 09:21:32 +03:00
links {
"Xrandr",
"Xinerama",
"Xi",
"Xxf86vm",
"Xcursor",
}
2015-03-25 08:19:21 +03:00
configuration { "osx" }
linkoptions {
"-framework CoreVideo",
"-framework IOKit",
}
configuration {}
end
2014-10-20 08:29:27 +04:00
if _OPTIONS["with-ovr"] then
links {
"winmm",
"ws2_32",
}
2016-04-02 12:41:40 +03:00
configuration { "x32", "Debug" }
libdirs { path.join("$(OVR_DIR)/LibOVR/Lib/Windows/Win32/Debug", _ACTION) }
2014-10-20 08:29:27 +04:00
2016-04-02 12:41:40 +03:00
configuration { "x32", "Release" }
libdirs { path.join("$(OVR_DIR)/LibOVR/Lib/Windows/Win32/Release", _ACTION) }
2014-10-20 08:29:27 +04:00
2016-04-02 12:41:40 +03:00
configuration { "x64", "Debug" }
libdirs { path.join("$(OVR_DIR)/LibOVR/Lib/Windows/x64/Debug", _ACTION) }
2014-10-20 08:29:27 +04:00
2016-04-02 12:41:40 +03:00
configuration { "x64", "Release" }
libdirs { path.join("$(OVR_DIR)/LibOVR/Lib/Windows/x64/Release", _ACTION) }
2014-10-20 08:29:27 +04:00
2016-04-02 12:41:40 +03:00
configuration { "x32 or x64" }
links { "libovr" }
2014-10-20 08:29:27 +04:00
configuration {}
end
2016-02-26 07:29:09 +03:00
configuration { "vs*", "x32 or x64" }
linkoptions {
"/ignore:4199", -- LNK4199: /DELAYLOAD:*.dll ignored; no imports found from *.dll
}
links { -- this is needed only for testing with GLES2/3 on Windows with VS2008
"DelayImp",
}
2016-02-26 07:29:09 +03:00
configuration { "vs201*", "x32 or x64" }
linkoptions { -- this is needed only for testing with GLES2/3 on Windows with VS201x
"/DELAYLOAD:\"libEGL.dll\"",
"/DELAYLOAD:\"libGLESv2.dll\"",
}
configuration { "mingw*" }
targetextension ".exe"
2016-02-26 07:29:09 +03:00
links {
"gdi32",
"psapi",
}
2016-02-26 07:29:09 +03:00
configuration { "vs20*", "x32 or x64" }
2014-10-16 10:21:46 +04:00
links {
"gdi32",
"psapi",
}
2016-02-26 07:29:09 +03:00
configuration { "durango" }
links {
"d3d11_x",
2016-03-09 03:39:59 +03:00
"d3d12_x",
2016-02-26 07:29:09 +03:00
"combase",
"kernelx",
}
configuration { "winphone8* or winstore8*" }
removelinks {
"DelayImp",
"gdi32",
"psapi"
}
links {
"d3d11",
"dxgi"
}
linkoptions {
"/ignore:4264" -- LNK4264: archiving object file compiled with /ZW into a static library; note that when authoring Windows Runtime types it is not recommended to link with a static library that contains Windows Runtime metadata
}
-- WinRT targets need their own output directories or build files stomp over each other
configuration { "x32", "winphone8* or winstore8*" }
targetdir (path.join(BGFX_BUILD_DIR, "win32_" .. _ACTION, "bin", _name))
objdir (path.join(BGFX_BUILD_DIR, "win32_" .. _ACTION, "obj", _name))
configuration { "x64", "winphone8* or winstore8*" }
targetdir (path.join(BGFX_BUILD_DIR, "win64_" .. _ACTION, "bin", _name))
objdir (path.join(BGFX_BUILD_DIR, "win64_" .. _ACTION, "obj", _name))
configuration { "ARM", "winphone8* or winstore8*" }
targetdir (path.join(BGFX_BUILD_DIR, "arm_" .. _ACTION, "bin", _name))
objdir (path.join(BGFX_BUILD_DIR, "arm_" .. _ACTION, "obj", _name))
2014-10-18 10:17:29 +04:00
configuration { "mingw-clang" }
kind "ConsoleApp"
2013-04-17 10:12:03 +04:00
configuration { "android*" }
2013-12-03 07:46:25 +04:00
kind "ConsoleApp"
2013-04-17 10:12:03 +04:00
targetextension ".so"
2013-12-03 07:46:25 +04:00
linkoptions {
"-shared",
}
2013-04-17 10:12:03 +04:00
links {
"EGL",
"GLESv2",
}
2014-10-20 08:29:27 +04:00
configuration { "nacl*" }
2013-05-19 02:28:35 +04:00
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",
}
2014-03-16 23:38:43 +04:00
configuration { "asmjs" }
kind "ConsoleApp"
targetextension ".bc"
2016-02-15 21:45:58 +03:00
configuration { "linux-* or freebsd", "not linux-steamlink" }
2013-01-27 04:30:02 +04:00
links {
2013-04-30 06:35:33 +04:00
"X11",
2013-01-27 04:30:02 +04:00
"GL",
"pthread",
}
2016-02-15 21:45:58 +03:00
configuration { "linux-steamlink" }
links {
"EGL",
"GLESv2",
"SDL2",
"pthread",
}
2016-02-26 07:29:09 +03:00
2014-08-25 04:41:41 +04:00
configuration { "rpi" }
links {
"X11",
"GLESv2",
"EGL",
"bcm_host",
2014-08-25 07:39:35 +04:00
"vcos",
"vchiq_arm",
2014-08-25 04:41:41 +04:00
"pthread",
}
2013-04-13 10:43:46 +04:00
configuration { "osx" }
2015-10-07 01:27:54 +03:00
linkoptions {
"-framework Cocoa",
"-framework QuartzCore",
"-framework OpenGL",
"-weak_framework Metal",
2013-01-27 04:30:02 +04:00
}
2015-10-12 23:32:39 +03:00
configuration { "ios* or tvos*" }
2013-07-22 01:44:53 +04:00
kind "ConsoleApp"
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",
"-weak_framework Metal",
2013-07-13 09:27:46 +04:00
}
configuration { "xcode4", "ios" }
kind "WindowedApp"
files {
path.join(BGFX_DIR, "examples/runtime/iOS-Info.plist"),
}
2015-10-12 23:32:39 +03:00
configuration { "xcode4", "tvos" }
kind "WindowedApp"
files {
path.join(BGFX_DIR, "examples/runtime/tvOS-Info.plist"),
}
configuration { "qnx*" }
targetextension ""
links {
"EGL",
"GLESv2",
}
configuration {}
strip()
2013-01-27 04:30:02 +04:00
end
2012-06-02 06:55:56 +04:00
dofile "bgfx.lua"
2014-12-06 23:52:14 +03:00
group "examples"
dofile "example-common.lua"
2014-12-06 23:52:14 +03:00
group "libs"
2014-09-11 10:01:22 +04:00
bgfxProject("", "StaticLib", {})
2014-12-06 23:52:14 +03:00
group "examples"
2014-09-11 10:01:22 +04:00
exampleProject("00-helloworld")
exampleProject("01-cubes")
exampleProject("02-metaballs")
exampleProject("03-raymarch")
exampleProject("04-mesh")
exampleProject("05-instancing")
exampleProject("06-bump")
exampleProject("07-callback")
exampleProject("08-update")
exampleProject("09-hdr")
exampleProject("10-font")
exampleProject("11-fontsdf")
exampleProject("12-lod")
exampleProject("13-stencil")
exampleProject("14-shadowvolumes")
exampleProject("15-shadowmaps-simple")
exampleProject("16-shadowmaps")
exampleProject("17-drawstress")
exampleProject("18-ibl")
exampleProject("19-oit")
exampleProject("20-nanovg")
exampleProject("21-deferred")
exampleProject("22-windows")
2014-11-16 03:19:43 +03:00
exampleProject("23-vectordisplay")
2014-12-20 08:09:58 +03:00
exampleProject("24-nbody")
2015-11-02 04:28:23 +03:00
exampleProject("26-occlusion")
2015-12-14 04:21:07 +03:00
exampleProject("27-terrain")
exampleProject("28-wireframe")
2016-03-28 04:40:03 +03:00
exampleProject("29-debugdraw")
-- C99 source doesn't compile under WinRT settings
if not premake.vstudio.iswinrt() then
exampleProject("25-c99")
end
2014-08-23 06:29:54 +04:00
if _OPTIONS["with-shared-lib"] then
2014-12-06 23:52:14 +03:00
group "libs"
2014-09-11 10:01:22 +04:00
bgfxProject("-shared-lib", "SharedLib", {})
2014-08-23 06:29:54 +04:00
end
2014-05-05 02:43:14 +04:00
if _OPTIONS["with-tools"] then
2014-12-06 23:52:14 +03:00
group "tools"
2014-05-05 02:43:14 +04:00
dofile "shaderc.lua"
dofile "texturec.lua"
dofile "geometryc.lua"
end