mirror of
https://github.com/holub/mame
synced 2025-05-14 09:58:14 +03:00

* Sync with bgfx upstream revision b91d0b6 * Sync with bx upstream revision d60912b * Sync with bimg upstream revision bd81f60 * Add astc-codec decoder * Rename VertexDecl to VertexLayout * Rename UniformType enum Int1 to Sampler. * Add NVN stub * Fix unused-const-variable error on macOS * Drop redundant explicit language parameters buildoptions_cpp are only applied to c++ files and buildoptions_objcpp are only applied to objective c++ files. As such, hardcoding -x offers no benefit while preventing overrides (such as one needed by 3rdparty/bgfx/src/renderer_vk.cpp on macOS) from working. * Re-introduce -x c++ in places where C code is compiled as C++ to prevent clang from throwing a warning * Build bgfx as Objective-C++ on macOS It is needed due to included headers * Enable Direct3D12 and Vulkan bgfx rendering backends * Enable building of spirv shaders * Properly escape /c in cmd call * Comment out dx12 bgfx renderer * Honor VERBOSE setting during shaders build * Only invert hlsl shader XYZ_TO_sRGB matrix for opengl * Add spirv shaders * OpenGL ES needs transposed matrix too * Metal needs transposed matrix as well
173 lines
3.2 KiB
Lua
173 lines
3.2 KiB
Lua
project ("geometryv")
|
|
uuid (os.uuid("geometryv") )
|
|
kind "ConsoleApp"
|
|
|
|
configuration {}
|
|
|
|
includedirs {
|
|
path.join(BX_DIR, "include"),
|
|
path.join(BIMG_DIR, "include"),
|
|
path.join(BGFX_DIR, "include"),
|
|
path.join(BGFX_DIR, "3rdparty"),
|
|
path.join(BGFX_DIR, "examples/common"),
|
|
path.join(MODULE_DIR, "include"),
|
|
path.join(MODULE_DIR, "3rdparty"),
|
|
}
|
|
|
|
files {
|
|
path.join(MODULE_DIR, "tools/geometryv/**"),
|
|
}
|
|
|
|
links {
|
|
"example-common",
|
|
"bimg_decode",
|
|
"bimg",
|
|
"bgfx",
|
|
"bx",
|
|
}
|
|
|
|
if _OPTIONS["with-sdl"] then
|
|
defines { "ENTRY_CONFIG_USE_SDL=1" }
|
|
links { "SDL2" }
|
|
|
|
configuration { "x32", "windows" }
|
|
libdirs { "$(SDL2_DIR)/lib/x86" }
|
|
|
|
configuration { "x64", "windows" }
|
|
libdirs { "$(SDL2_DIR)/lib/x64" }
|
|
|
|
configuration {}
|
|
end
|
|
|
|
if _OPTIONS["with-glfw"] then
|
|
defines { "ENTRY_CONFIG_USE_GLFW=1" }
|
|
links { "glfw3" }
|
|
|
|
configuration { "linux or freebsd" }
|
|
links {
|
|
"Xrandr",
|
|
"Xinerama",
|
|
"Xi",
|
|
"Xxf86vm",
|
|
"Xcursor",
|
|
}
|
|
|
|
configuration { "osx" }
|
|
linkoptions {
|
|
"-framework CoreVideo",
|
|
"-framework IOKit",
|
|
}
|
|
|
|
configuration {}
|
|
end
|
|
|
|
configuration { "vs*" }
|
|
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",
|
|
}
|
|
|
|
configuration { "vs201*" }
|
|
linkoptions { -- this is needed only for testing with GLES2/3 on Windows with VS201x
|
|
"/DELAYLOAD:\"libEGL.dll\"",
|
|
"/DELAYLOAD:\"libGLESv2.dll\"",
|
|
}
|
|
|
|
configuration { "mingw-*" }
|
|
targetextension ".exe"
|
|
|
|
configuration { "vs20* or mingw*" }
|
|
links {
|
|
"comdlg32",
|
|
"gdi32",
|
|
"psapi",
|
|
}
|
|
|
|
configuration { "winstore*" }
|
|
removelinks {
|
|
"DelayImp",
|
|
"gdi32",
|
|
"psapi"
|
|
}
|
|
links {
|
|
"d3d11",
|
|
"d3d12",
|
|
"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 are build files stomp over each other
|
|
targetdir (path.join(BGFX_BUILD_DIR, "arm_" .. _ACTION, "bin", _name))
|
|
objdir (path.join(BGFX_BUILD_DIR, "arm_" .. _ACTION, "obj", _name))
|
|
|
|
configuration { "mingw-clang" }
|
|
kind "ConsoleApp"
|
|
|
|
configuration { "android*" }
|
|
kind "ConsoleApp"
|
|
targetextension ".so"
|
|
linkoptions {
|
|
"-shared",
|
|
}
|
|
links {
|
|
"EGL",
|
|
"GLESv2",
|
|
}
|
|
|
|
configuration { "asmjs" }
|
|
kind "ConsoleApp"
|
|
targetextension ".bc"
|
|
|
|
configuration { "linux-* or freebsd" }
|
|
links {
|
|
"X11",
|
|
"GL",
|
|
"pthread",
|
|
}
|
|
|
|
configuration { "rpi" }
|
|
links {
|
|
"X11",
|
|
"GLESv2",
|
|
"EGL",
|
|
"bcm_host",
|
|
"vcos",
|
|
"vchiq_arm",
|
|
"pthread",
|
|
}
|
|
|
|
configuration { "osx" }
|
|
linkoptions {
|
|
"-framework Cocoa",
|
|
"-framework Metal",
|
|
"-framework QuartzCore",
|
|
"-framework OpenGL",
|
|
}
|
|
|
|
configuration { "ios*" }
|
|
kind "ConsoleApp"
|
|
linkoptions {
|
|
"-framework CoreFoundation",
|
|
"-framework Foundation",
|
|
"-framework OpenGLES",
|
|
"-framework UIKit",
|
|
"-framework QuartzCore",
|
|
}
|
|
|
|
configuration { "xcode4", "ios" }
|
|
kind "WindowedApp"
|
|
|
|
configuration { "qnx*" }
|
|
targetextension ""
|
|
links {
|
|
"EGL",
|
|
"GLESv2",
|
|
}
|
|
|
|
configuration {}
|
|
|
|
strip()
|