bgfx/scripts/shaderc.lua

224 lines
5.3 KiB
Lua
Raw Normal View History

2013-05-18 06:39:08 +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
2013-05-18 06:39:08 +04:00
--
2016-12-16 06:03:47 +03:00
project "glslang"
kind "StaticLib"
2016-12-16 07:53:13 +03:00
configuration { "vs*" }
buildoptions {
"/wd4005", -- warning C4005: '_CRT_SECURE_NO_WARNINGS': macro redefinition
}
2016-12-16 07:31:18 +03:00
configuration { "not vs*" }
buildoptions {
"-Wno-ignored-qualifiers",
"-Wno-inconsistent-missing-override",
"-Wno-missing-field-initializers",
"-Wno-reorder",
"-Wno-shadow",
"-Wno-sign-compare",
"-Wno-undef",
"-Wno-unknown-pragmas",
"-Wno-unused-parameter",
"-Wno-unused-variable",
}
2016-12-16 06:03:47 +03:00
configuration { "osx" }
buildoptions {
"-Wno-c++11-extensions",
"-Wno-unused-const-variable",
}
2016-12-16 07:46:12 +03:00
configuration { "linux-*" }
2016-12-16 06:03:47 +03:00
buildoptions {
"-Wno-unused-but-set-variable",
}
configuration {}
includedirs {
"../3rdparty/glslang",
}
files {
"../3rdparty/glslang/glslang/**.cpp",
"../3rdparty/glslang/glslang/**.h",
"../3rdparty/glslang/hlsl/**.cpp",
"../3rdparty/glslang/hlsl/**.h",
"../3rdparty/glslang/SPIRV/**.cpp",
"../3rdparty/glslang/SPIRV/**.h",
"../3rdparty/glslang/OGLCompilersDLL/**.cpp",
"../3rdparty/glslang/OGLCompilersDLL/**.h",
"../3rdparty/glsl-parser/**.cpp",
"../3rdparty/glsl-parser/**.h",
}
removefiles {
"../3rdparty/glsl-parser/main.cpp",
2016-12-16 07:53:13 +03:00
"../3rdparty/glslang/glslang/OSDependent/Unix/main.cpp",
"../3rdparty/glslang/glslang/OSDependent/Windows/main.cpp",
2016-12-16 06:03:47 +03:00
}
2016-12-16 07:53:13 +03:00
configuration { "windows" }
removefiles {
"../3rdparty/glslang/glslang/OSDependent/Unix/**.cpp",
"../3rdparty/glslang/glslang/OSDependent/Unix/**.h",
}
configuration { "not windows" }
removefiles {
"../3rdparty/glslang/glslang/OSDependent/Windows/**.cpp",
"../3rdparty/glslang/glslang/OSDependent/Windows/**.h",
}
configuration {}
2013-02-22 09:13:56 +04:00
project "shaderc"
kind "ConsoleApp"
local GLSL_OPTIMIZER = path.join(BGFX_DIR, "3rdparty/glsl-optimizer")
local FCPP_DIR = path.join(BGFX_DIR, "3rdparty/fcpp")
2013-02-22 09:13:56 +04:00
2014-10-11 23:32:43 +04:00
includedirs {
path.join(GLSL_OPTIMIZER, "src"),
2014-10-11 23:32:43 +04:00
}
2015-04-13 22:54:45 +03:00
removeflags {
-- GCC 4.9 -O2 + -fno-strict-aliasing don't work together...
"OptimizeSpeed",
}
2013-02-22 09:13:56 +04:00
configuration { "vs*" }
includedirs {
path.join(GLSL_OPTIMIZER, "src/glsl/msvc"),
2013-02-22 09:13:56 +04:00
}
defines { -- glsl-optimizer
"__STDC__",
"__STDC_VERSION__=199901L",
"strdup=_strdup",
"alloca=_alloca",
"isascii=__isascii",
}
2013-03-20 10:34:17 +04:00
buildoptions {
"/wd4996" -- warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strdup.
}
2016-04-30 21:08:56 +03:00
configuration { "mingw-*" }
targetextension ".exe"
2014-10-19 02:44:45 +04:00
configuration { "mingw* or linux or osx" }
buildoptions {
2015-04-05 21:55:04 +03:00
"-fno-strict-aliasing", -- glsl-optimizer has bugs if strict aliasing is used.
"-Wno-unused-parameter",
}
2015-04-05 05:45:45 +03:00
removebuildoptions {
"-Wshadow", -- glsl-optimizer is full of -Wshadow warnings ignore it.
}
2013-08-05 07:18:33 +04:00
configuration { "osx" }
links {
"Cocoa.framework",
}
configuration { "vs*" }
2013-02-22 09:13:56 +04:00
includedirs {
path.join(GLSL_OPTIMIZER, "include/c99"),
2013-02-22 09:13:56 +04:00
}
configuration {}
defines { -- fcpp
2013-02-22 09:13:56 +04:00
"NINCLUDE=64",
"NWORK=65536",
"NBUFF=65536",
2014-08-22 20:53:14 +04:00
"OLD_PREPROCESSOR=0",
2013-02-22 09:13:56 +04:00
}
includedirs {
path.join(BX_DIR, "include"),
path.join(BGFX_DIR, "include"),
2013-02-22 09:13:56 +04:00
2016-01-31 04:14:09 +03:00
path.join(BGFX_DIR, "3rdparty/dxsdk/include"),
2013-02-22 09:13:56 +04:00
FCPP_DIR,
2016-12-16 06:03:47 +03:00
path.join(BGFX_DIR, "3rdparty/glslang/glslang/Public"),
path.join(BGFX_DIR, "3rdparty/glslang/glslang/Include"),
path.join(BGFX_DIR, "3rdparty/glslang"),
-- path.join(BGFX_DIR, "3rdparty/spirv-tools/include"),
path.join(GLSL_OPTIMIZER, "include"),
path.join(GLSL_OPTIMIZER, "src/mesa"),
path.join(GLSL_OPTIMIZER, "src/mapi"),
path.join(GLSL_OPTIMIZER, "src/glsl"),
2013-02-22 09:13:56 +04:00
}
files {
path.join(BGFX_DIR, "tools/shaderc/**.cpp"),
path.join(BGFX_DIR, "tools/shaderc/**.h"),
path.join(BGFX_DIR, "src/vertexdecl.**"),
2016-12-16 06:03:47 +03:00
path.join(BGFX_DIR, "src/shader_spirv.**"),
path.join(FCPP_DIR, "**.h"),
path.join(FCPP_DIR, "cpp1.c"),
path.join(FCPP_DIR, "cpp2.c"),
path.join(FCPP_DIR, "cpp3.c"),
path.join(FCPP_DIR, "cpp4.c"),
path.join(FCPP_DIR, "cpp5.c"),
path.join(FCPP_DIR, "cpp6.c"),
path.join(FCPP_DIR, "cpp6.c"),
path.join(GLSL_OPTIMIZER, "src/mesa/**.c"),
path.join(GLSL_OPTIMIZER, "src/glsl/**.cpp"),
path.join(GLSL_OPTIMIZER, "src/mesa/**.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/**.c"),
path.join(GLSL_OPTIMIZER, "src/glsl/**.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/**.h"),
path.join(GLSL_OPTIMIZER, "src/util/**.c"),
path.join(GLSL_OPTIMIZER, "src/util/**.h"),
2013-02-22 09:13:56 +04:00
}
2015-04-06 21:38:28 +03:00
removefiles {
path.join(GLSL_OPTIMIZER, "src/glsl/glcpp/glcpp.c"),
path.join(GLSL_OPTIMIZER, "src/glsl/glcpp/tests/**"),
path.join(GLSL_OPTIMIZER, "src/glsl/glcpp/**.l"),
path.join(GLSL_OPTIMIZER, "src/glsl/glcpp/**.y"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_set_program_inouts.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/main.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/builtin_stubs.cpp"),
2013-02-22 09:13:56 +04:00
}
2013-04-29 01:08:59 +04:00
2016-12-16 06:03:47 +03:00
links {
"glslang",
}
2016-10-05 08:48:59 +03:00
if filesexist(BGFX_DIR, path.join(BGFX_DIR, "../bgfx-ext"), {
path.join(BGFX_DIR, "scripts/shaderc.lua"), }) then
if filesexist(BGFX_DIR, path.join(BGFX_DIR, "../bgfx-ext"), {
path.join(BGFX_DIR, "tools/shaderc/shaderc_pssl.cpp"), }) then
removefiles {
path.join(BGFX_DIR, "tools/shaderc/shaderc_pssl.cpp"),
}
end
2016-10-05 08:48:59 +03:00
dofile(path.join(BGFX_DIR, "../bgfx-ext/scripts/shaderc.lua") )
end
2016-10-01 06:03:16 +03:00
2016-12-16 06:03:47 +03:00
configuration { "osx or linux-*" }
links {
"pthread",
}
configuration {}
2013-04-29 01:08:59 +04:00
strip()