summaryrefslogtreecommitdiffstats
path: root/rules/shaderc.in
blob: ccb3bc538032001df168401681c5c310cc7878b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
## SECTION=multimedia_libs

menuconfig SHADERC
	tristate
	prompt "shaderc"
	select HOST_CMAKE
	select HOST_SYSTEM_PYTHON3
	help
	  A collection of tools, libraries and tests for shader compilation.

if SHADERC

config SHADERC_GLSLC
	bool
	prompt "install glslc"
	help
	  Install glslc tool.

config SHADERC_SPVC
	bool
	# requires SPIRV-Cross
	depends on BROKEN
	prompt "install spvc"
	help
	  Install spvc tool.

config SHADERC_LIBSHADERC
	bool
	prompt "install libshaderc"
	help
	  Install libshaderc shared library.

config SHADERC_LIBSHADERC_SPVC
	bool
	# requires SPIRV-Cross
	depends on BROKEN
	prompt "install libshaderc_spvc"
	help
	  Install libshaderc_spvc shared library.

endif