bgfx/scripts/shaderc.lua

638 lines
24 KiB
Lua
Raw Normal View History

2013-05-18 06:39:08 +04:00
--
2024-01-14 12:56:36 +03:00
-- Copyright 2010-2024 Branimir Karadzic. All rights reserved.
2022-01-15 22:59:06 +03:00
-- License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
2013-05-18 06:39:08 +04:00
--
2017-03-12 01:44:00 +03:00
group "tools/shaderc"
local GLSL_OPTIMIZER = path.join(BGFX_DIR, "3rdparty/glsl-optimizer")
2019-01-10 06:23:47 +03:00
local FCPP_DIR = path.join(BGFX_DIR, "3rdparty/fcpp")
local GLSLANG = path.join(BGFX_DIR, "3rdparty/glslang")
local SPIRV_CROSS = path.join(BGFX_DIR, "3rdparty/spirv-cross")
local SPIRV_HEADERS = path.join(BGFX_DIR, "3rdparty/spirv-headers")
local SPIRV_TOOLS = path.join(BGFX_DIR, "3rdparty/spirv-tools")
2018-04-11 05:44:28 +03:00
project "spirv-opt"
kind "StaticLib"
includedirs {
2019-01-26 09:32:25 +03:00
SPIRV_TOOLS,
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "include"),
path.join(SPIRV_TOOLS, "include/generated"),
path.join(SPIRV_TOOLS, "source"),
2019-01-10 06:23:47 +03:00
path.join(SPIRV_HEADERS, "include"),
2018-04-11 05:44:28 +03:00
}
files {
path.join(SPIRV_TOOLS, "source/opt/**.cpp"),
path.join(SPIRV_TOOLS, "source/opt/**.h"),
2019-01-26 09:09:33 +03:00
path.join(SPIRV_TOOLS, "source/reduce/**.cpp"),
path.join(SPIRV_TOOLS, "source/reduce/**.h"),
2023-01-15 05:40:27 +03:00
path.join(SPIRV_TOOLS, "source/val/**.cpp"),
path.join(SPIRV_TOOLS, "source/val/**.h"),
2018-04-11 05:44:28 +03:00
-- libspirv
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/assembly_grammar.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/assembly_grammar.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/binary.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/binary.h"),
path.join(SPIRV_TOOLS, "source/cfa.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/diagnostic.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/diagnostic.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/disassemble.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/disassemble.h"),
path.join(SPIRV_TOOLS, "source/enum_set.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/enum_string_mapping.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/enum_string_mapping.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/ext_inst.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/ext_inst.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/extensions.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/extensions.h"),
path.join(SPIRV_TOOLS, "source/instruction.h"),
path.join(SPIRV_TOOLS, "source/latest_version_glsl_std_450_header.h"),
path.join(SPIRV_TOOLS, "source/latest_version_opencl_std_header.h"),
path.join(SPIRV_TOOLS, "source/latest_version_spirv_header.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/libspirv.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/macro.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/name_mapper.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/name_mapper.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/opcode.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/opcode.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/operand.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/operand.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/parsed_operand.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/parsed_operand.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/print.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/print.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/software_version.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/spirv_constant.h"),
path.join(SPIRV_TOOLS, "source/spirv_definition.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/spirv_endian.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/spirv_endian.h"),
2019-01-05 19:15:11 +03:00
path.join(SPIRV_TOOLS, "source/spirv_optimizer_options.cpp"),
path.join(SPIRV_TOOLS, "source/spirv_reducer_options.cpp"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/spirv_target_env.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/spirv_target_env.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/spirv_validator_options.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/spirv_validator_options.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/table.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/table.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/text.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/text.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/text_handler.cpp"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/text_handler.h"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/util/bit_vector.cpp"),
path.join(SPIRV_TOOLS, "source/util/bit_vector.h"),
path.join(SPIRV_TOOLS, "source/util/bitutils.h"),
path.join(SPIRV_TOOLS, "source/util/hex_float.h"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/util/parse_number.cpp"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/util/parse_number.h"),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "source/util/string_utils.cpp"),
2018-09-03 07:14:20 +03:00
path.join(SPIRV_TOOLS, "source/util/string_utils.h"),
path.join(SPIRV_TOOLS, "source/util/timer.h"),
2018-04-11 05:44:28 +03:00
}
configuration { "vs*" }
buildoptions {
"/wd4127", -- warning C4127: conditional expression is constant
2023-06-29 19:25:54 +03:00
"/wd4267", -- warning C4267: 'argument': conversion from '' to '', possible loss of data
2018-04-11 05:44:28 +03:00
"/wd4389", -- warning C4389: '==': signed/unsigned mismatch
"/wd4702", -- warning C4702: unreachable code
"/wd4706", -- warning C4706: assignment within conditional expression
}
configuration { "mingw* or linux* or osx*" }
2019-01-10 06:23:47 +03:00
buildoptions {
"-Wno-switch",
}
configuration { "mingw* or linux-gcc-*" }
buildoptions {
"-Wno-misleading-indentation",
}
configuration {}
project "spirv-cross"
kind "StaticLib"
defines {
"SPIRV_CROSS_EXCEPTIONS_TO_ASSERTIONS",
}
includedirs {
path.join(SPIRV_CROSS, "include"),
}
files {
path.join(SPIRV_CROSS, "spirv.hpp"),
path.join(SPIRV_CROSS, "spirv_cfg.cpp"),
path.join(SPIRV_CROSS, "spirv_cfg.hpp"),
path.join(SPIRV_CROSS, "spirv_common.hpp"),
path.join(SPIRV_CROSS, "spirv_cpp.cpp"),
path.join(SPIRV_CROSS, "spirv_cpp.hpp"),
path.join(SPIRV_CROSS, "spirv_cross.cpp"),
path.join(SPIRV_CROSS, "spirv_cross.hpp"),
path.join(SPIRV_CROSS, "spirv_cross_parsed_ir.cpp"),
path.join(SPIRV_CROSS, "spirv_cross_parsed_ir.hpp"),
path.join(SPIRV_CROSS, "spirv_cross_util.cpp"),
path.join(SPIRV_CROSS, "spirv_cross_util.hpp"),
path.join(SPIRV_CROSS, "spirv_glsl.cpp"),
path.join(SPIRV_CROSS, "spirv_glsl.hpp"),
path.join(SPIRV_CROSS, "spirv_hlsl.cpp"),
path.join(SPIRV_CROSS, "spirv_hlsl.hpp"),
path.join(SPIRV_CROSS, "spirv_msl.cpp"),
path.join(SPIRV_CROSS, "spirv_msl.hpp"),
path.join(SPIRV_CROSS, "spirv_parser.cpp"),
path.join(SPIRV_CROSS, "spirv_parser.hpp"),
path.join(SPIRV_CROSS, "spirv_reflect.cpp"),
path.join(SPIRV_CROSS, "spirv_reflect.hpp"),
}
configuration { "vs*" }
buildoptions {
"/wd4018", -- warning C4018: '<': signed/unsigned mismatch
"/wd4245", -- warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
"/wd4706", -- warning C4706: assignment within conditional expression
2019-01-10 06:32:44 +03:00
"/wd4715", -- warning C4715: '': not all control paths return a value
2019-01-10 06:23:47 +03:00
}
configuration { "mingw* or linux* or osx*" }
2020-07-11 02:24:50 +03:00
buildoptions {
"-Wno-type-limits",
}
2019-01-10 06:23:47 +03:00
configuration {}
2016-12-16 06:03:47 +03:00
project "glslang"
kind "StaticLib"
2018-04-11 05:44:28 +03:00
defines {
"ENABLE_OPT=1", -- spirv-tools
2018-05-02 05:12:20 +03:00
"ENABLE_HLSL=1",
2018-04-11 05:44:28 +03:00
}
includedirs {
GLSLANG,
2020-07-11 03:17:00 +03:00
path.join(GLSLANG, ".."),
2018-04-11 05:44:28 +03:00
path.join(SPIRV_TOOLS, "include"),
path.join(SPIRV_TOOLS, "source"),
}
files {
path.join(GLSLANG, "glslang/**.cpp"),
path.join(GLSLANG, "glslang/**.h"),
path.join(GLSLANG, "hlsl/**.cpp"),
path.join(GLSLANG, "hlsl/**.h"),
path.join(GLSLANG, "SPIRV/**.cpp"),
path.join(GLSLANG, "SPIRV/**.h"),
path.join(GLSLANG, "OGLCompilersDLL/**.cpp"),
path.join(GLSLANG, "OGLCompilersDLL/**.h"),
}
configuration { "windows" }
removefiles {
path.join(GLSLANG, "glslang/OSDependent/Unix/**.cpp"),
path.join(GLSLANG, "glslang/OSDependent/Unix/**.h"),
}
configuration { "not windows" }
removefiles {
path.join(GLSLANG, "glslang/OSDependent/Windows/**.cpp"),
path.join(GLSLANG, "glslang/OSDependent/Windows/**.h"),
}
2016-12-16 09:48:14 +03:00
2016-12-16 07:53:13 +03:00
configuration { "vs*" }
buildoptions {
"/wd4005", -- warning C4005: '_CRT_SECURE_NO_WARNINGS': macro redefinition
2018-09-03 08:21:37 +03:00
"/wd4065", -- warning C4065: switch statement contains 'default' but no 'case' labels
2017-12-29 22:21:21 +03:00
"/wd4100", -- warning C4100: 'inclusionDepth' : unreferenced formal parameter
"/wd4127", -- warning C4127: conditional expression is constant
2018-03-18 00:35:31 +03:00
"/wd4189", -- warning C4189: 'isFloat': local variable is initialized but not referenced
2017-03-13 04:28:18 +03:00
"/wd4244", -- warning C4244: '=': conversion from 'int' to 'char', possible loss of data
2018-03-18 00:35:31 +03:00
"/wd4310", -- warning C4310: cast truncates constant value
2018-09-03 08:21:37 +03:00
"/wd4389", -- warning C4389: '==': signed/unsigned mismatch
"/wd4456", -- warning C4456: declaration of 'feature' hides previous local declaration
"/wd4457", -- warning C4457: declaration of 'token' hides function parameter
"/wd4458", -- warning C4458: declaration of 'language' hides class member
"/wd4702", -- warning C4702: unreachable code
2018-03-18 00:35:31 +03:00
"/wd4715", -- warning C4715: 'spv::Builder::makeFpConstant': not all control paths return a value
2018-09-03 08:21:37 +03:00
"/wd4838", -- warning C4838: conversion from 'spv::GroupOperation' to 'unsigned int' requires a narrowing conversion
2016-12-16 07:53:13 +03:00
}
configuration { "mingw-gcc or linux-gcc" }
2016-12-16 07:31:18 +03:00
buildoptions {
2020-07-11 02:24:50 +03:00
"-Wno-logical-op",
"-Wno-maybe-uninitialized",
}
configuration { "mingw* or linux* or osx*" }
buildoptions {
"-fno-strict-aliasing", -- glslang has bugs if strict aliasing is used.
"-Wno-ignored-qualifiers",
"-Wno-implicit-fallthrough",
2016-12-16 07:31:18 +03:00
"-Wno-missing-field-initializers",
"-Wno-reorder",
2017-02-04 06:32:35 +03:00
"-Wno-return-type",
2016-12-16 07:31:18 +03:00
"-Wno-shadow",
"-Wno-sign-compare",
2018-09-08 20:25:45 +03:00
"-Wno-switch",
2016-12-16 07:31:18 +03:00
"-Wno-undef",
"-Wno-unknown-pragmas",
2017-12-29 22:21:21 +03:00
"-Wno-unused-function",
2016-12-16 07:31:18 +03:00
"-Wno-unused-parameter",
"-Wno-unused-variable",
}
2016-12-16 06:03:47 +03:00
configuration { "osx*" }
2016-12-16 06:03:47 +03:00
buildoptions {
"-Wno-c++11-extensions",
"-Wno-unused-const-variable",
2018-02-21 00:29:54 +03:00
"-Wno-deprecated-register",
2016-12-16 06:03:47 +03:00
}
2018-08-03 08:18:27 +03:00
configuration { "linux-gcc-*" }
2016-12-16 06:03:47 +03:00
buildoptions {
"-Wno-unused-but-set-variable",
}
2016-12-16 07:53:13 +03:00
configuration {}
project "glsl-optimizer"
kind "StaticLib"
2013-02-22 09:13:56 +04:00
2014-10-11 23:32:43 +04:00
includedirs {
path.join(GLSL_OPTIMIZER, "src"),
path.join(GLSL_OPTIMIZER, "include"),
path.join(GLSL_OPTIMIZER, "src/mesa"),
path.join(GLSL_OPTIMIZER, "src/mapi"),
path.join(GLSL_OPTIMIZER, "src/glsl"),
2014-10-11 23:32:43 +04:00
}
files {
path.join(GLSL_OPTIMIZER, "src/glsl/glcpp/glcpp.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/glcpp/glcpp-lex.c"),
path.join(GLSL_OPTIMIZER, "src/glsl/glcpp/glcpp-parse.c"),
path.join(GLSL_OPTIMIZER, "src/glsl/glcpp/glcpp-parse.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/glcpp/pp.c"),
path.join(GLSL_OPTIMIZER, "src/glsl/ast.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ast_array_index.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ast_expr.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ast_function.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ast_to_hir.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ast_type.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/builtin_functions.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/builtin_type_macros.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/builtin_types.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/builtin_variables.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/glsl_lexer.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/glsl_optimizer.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/glsl_optimizer.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/glsl_parser.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/glsl_parser.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/glsl_parser_extras.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/glsl_parser_extras.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/glsl_symbol_table.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/glsl_symbol_table.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/glsl_types.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/glsl_types.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/hir_field_selection.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_basic_block.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_basic_block.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_builder.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_builder.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_clone.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_constant_expression.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_equals.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_expression_flattening.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_expression_flattening.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_function.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_function_can_inline.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_function_detect_recursion.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_function_inlining.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_hierarchical_visitor.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_hierarchical_visitor.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_hv_accept.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_import_prototypes.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_optimization.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_print_glsl_visitor.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_print_glsl_visitor.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_print_metal_visitor.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_print_metal_visitor.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_print_visitor.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_print_visitor.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_rvalue_visitor.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_rvalue_visitor.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_stats.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_stats.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_uniform.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_unused_structs.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_unused_structs.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_validate.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_variable_refcount.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_variable_refcount.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/ir_visitor.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/link_atomics.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/link_functions.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/link_interface_blocks.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/link_uniform_block_active_visitor.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/link_uniform_block_active_visitor.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/link_uniform_blocks.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/link_uniform_initializers.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/link_uniforms.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/link_varyings.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/link_varyings.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/linker.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/linker.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/list.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/loop_analysis.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/loop_analysis.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/loop_controls.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/loop_unroll.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_clip_distance.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_discard.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_discard_flow.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_if_to_cond_assign.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_instructions.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_jumps.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_mat_op_to_vec.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_named_interface_blocks.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_noise.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_offset_array.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_output_reads.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_packed_varyings.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_packing_builtins.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_ubo_reference.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_variable_index_to_cond_assign.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_vec_index_to_cond_assign.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_vec_index_to_swizzle.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_vector.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_vector_insert.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/lower_vertex_id.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_algebraic.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_array_splitting.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_constant_folding.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_constant_propagation.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_constant_variable.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_copy_propagation.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_copy_propagation_elements.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_cse.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_dead_builtin_variables.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_dead_builtin_varyings.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_dead_code.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_dead_code_local.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_dead_functions.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_flatten_nested_if_blocks.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_flip_matrices.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_function_inlining.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_if_simplification.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_minmax.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_noop_swizzle.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_rebalance_tree.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_redundant_jumps.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_structure_splitting.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_swizzle_swizzle.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_tree_grafting.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/opt_vectorize.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/program.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/s_expression.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/s_expression.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/standalone_scaffolding.cpp"),
path.join(GLSL_OPTIMIZER, "src/glsl/standalone_scaffolding.h"),
path.join(GLSL_OPTIMIZER, "src/glsl/strtod.c"),
path.join(GLSL_OPTIMIZER, "src/glsl/strtod.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/main/compiler.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/main/config.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/main/context.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/main/core.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/main/dd.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/main/errors.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/main/glheader.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/main/glminimal.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/main/imports.c"),
path.join(GLSL_OPTIMIZER, "src/mesa/main/imports.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/main/macros.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/main/mtypes.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/main/simple_list.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/program/hash_table.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/program/prog_hash_table.c"),
path.join(GLSL_OPTIMIZER, "src/mesa/program/prog_instruction.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/program/prog_parameter.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/program/prog_statevars.h"),
path.join(GLSL_OPTIMIZER, "src/mesa/program/symbol_table.c"),
path.join(GLSL_OPTIMIZER, "src/mesa/program/symbol_table.h"),
path.join(GLSL_OPTIMIZER, "src/util/hash_table.c"),
path.join(GLSL_OPTIMIZER, "src/util/hash_table.h"),
path.join(GLSL_OPTIMIZER, "src/util/macros.h"),
path.join(GLSL_OPTIMIZER, "src/util/ralloc.c"),
path.join(GLSL_OPTIMIZER, "src/util/ralloc.h"),
}
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"),
2017-01-09 02:55:14 +03:00
}
2017-01-09 04:38:32 +03:00
configuration { "Release" }
flags {
"Optimize",
}
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 {
2017-03-12 01:35:32 +03:00
"/wd4100", -- error C4100: '' : unreferenced formal parameter
"/wd4127", -- warning C4127: conditional expression is constant
"/wd4132", -- warning C4132: 'deleted_key_value': const object should be initialized
"/wd4189", -- warning C4189: 'interface_type': local variable is initialized but not referenced
"/wd4204", -- warning C4204: nonstandard extension used: non-constant aggregate initializer
"/wd4244", -- warning C4244: '=': conversion from 'const flex_int32_t' to 'YY_CHAR', possible loss of data
"/wd4389", -- warning C4389: '!=': signed/unsigned mismatch
"/wd4245", -- warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
"/wd4701", -- warning C4701: potentially uninitialized local variable 'lower' used
"/wd4702", -- warning C4702: unreachable code
"/wd4706", -- warning C4706: assignment within conditional expression
2018-03-18 00:47:06 +03:00
"/wd4996", -- warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strdup.
2013-03-20 10:34:17 +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.
2018-03-18 00:40:38 +03:00
"-Wno-implicit-fallthrough",
2019-01-05 19:15:11 +03:00
"-Wno-parentheses",
2018-03-18 00:40:38 +03:00
"-Wno-sign-compare",
"-Wno-unused-function",
2015-04-05 21:55:04 +03:00
"-Wno-unused-parameter",
}
2017-03-12 01:35:32 +03:00
2015-04-05 05:45:45 +03:00
removebuildoptions {
"-Wshadow", -- glsl-optimizer is full of -Wshadow warnings ignore it.
}
configuration { "osx*" }
2018-04-11 05:44:28 +03:00
buildoptions {
"-Wno-deprecated-register",
}
2018-08-03 08:18:27 +03:00
configuration { "mingw* or linux-gcc-*" }
2018-04-11 05:44:28 +03:00
buildoptions {
"-Wno-misleading-indentation",
}
configuration {}
2017-03-12 01:50:03 +03:00
project "fcpp"
kind "StaticLib"
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",
2018-09-11 03:45:17 +03:00
-- "MSG_PREFIX=\"Preprocessor: \"",
2013-02-22 09:13:56 +04:00
}
2017-03-12 01:50:03 +03:00
files {
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"),
}
configuration { "vs*" }
buildoptions {
"/wd4055", -- warning C4055: 'type cast': from data pointer 'void *' to function pointer 'void (__cdecl *)(char *,void *)'
"/wd4244", -- warning C4244: '=': conversion from 'const flex_int32_t' to 'YY_CHAR', possible loss of data
"/wd4701", -- warning C4701: potentially uninitialized local variable 'lower' used
"/wd4706", -- warning C4706: assignment within conditional expression
}
2017-06-28 06:26:31 +03:00
configuration { "not vs*" }
buildoptions {
"-Wno-implicit-fallthrough",
2018-12-09 03:40:58 +03:00
"-Wno-incompatible-pointer-types",
2018-11-28 05:14:29 +03:00
"-Wno-parentheses-equality",
2017-06-28 06:26:31 +03:00
}
2017-03-12 01:50:03 +03:00
configuration {}
project "shaderc"
kind "ConsoleApp"
2013-02-22 09:13:56 +04:00
includedirs {
2017-04-04 08:42:27 +03:00
path.join(BIMG_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"),
2019-01-26 09:32:25 +03:00
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(GLSL_OPTIMIZER, "include"),
path.join(GLSL_OPTIMIZER, "src/glsl"),
2019-01-14 11:24:06 +03:00
SPIRV_CROSS,
2019-01-16 00:12:48 +03:00
path.join(SPIRV_TOOLS, "include"),
2013-02-22 09:13:56 +04:00
}
2017-03-12 01:50:03 +03:00
links {
"fcpp",
"glslang",
"glsl-optimizer",
2018-04-11 05:44:28 +03:00
"spirv-opt",
2019-01-10 06:23:47 +03:00
"spirv-cross",
2017-03-12 01:50:03 +03:00
}
using_bx()
2013-02-22 09:13:56 +04:00
files {
path.join(BGFX_DIR, "tools/shaderc/**.cpp"),
path.join(BGFX_DIR, "tools/shaderc/**.h"),
2020-03-29 06:06:03 +03:00
path.join(BGFX_DIR, "src/vertexlayout.**"),
path.join(BGFX_DIR, "src/shader**"),
2013-02-22 09:13:56 +04:00
}
2013-04-29 01:08:59 +04:00
2017-03-12 01:35:32 +03:00
configuration { "mingw-*" }
targetextension ".exe"
configuration { "osx*" }
2017-03-12 01:35:32 +03:00
links {
"Cocoa.framework",
}
configuration { "vs*" }
includedirs {
path.join(GLSL_OPTIMIZER, "include/c99"),
}
configuration { "vs20* or mingw*" }
links {
"psapi",
}
configuration { "osx* or linux*" }
2019-01-26 04:18:30 +03:00
links {
"pthread",
}
2017-03-12 01:35:32 +03:00
configuration {}
2016-12-16 06:03:47 +03:00
2019-03-13 03:05:39 +03:00
if filesexist(BGFX_DIR, path.join(BGFX_DIR, "../bgfx-gnm"), {
2016-10-05 08:48:59 +03:00
path.join(BGFX_DIR, "scripts/shaderc.lua"), }) then
2019-03-13 03:05:39 +03:00
if filesexist(BGFX_DIR, path.join(BGFX_DIR, "../bgfx-gnm"), {
path.join(BGFX_DIR, "tools/shaderc/shaderc_pssl.cpp"), }) then
removefiles {
path.join(BGFX_DIR, "tools/shaderc/shaderc_pssl.cpp"),
}
end
2019-03-13 03:05:39 +03:00
dofile(path.join(BGFX_DIR, "../bgfx-gnm/scripts/shaderc.lua") )
2016-10-05 08:48:59 +03:00
end
2016-10-01 06:03:16 +03:00
2013-04-29 01:08:59 +04:00
strip()
2017-03-12 01:44:00 +03:00
group "tools"