From b462c122117293f2f3e7e8387e9db5eace4977d2 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 20 Jul 2020 20:06:34 -0400 Subject: [PATCH] cmake: build the HLSL profile by default. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bfdbb9e6..65c7eb8e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ OPTION(PROFILE_METAL "Build MojoShader with support for the Metal profile" ON) OPTION(PROFILE_SPIRV "Build MojoShader with support for the SPIR-V profile" ON) OPTION(PROFILE_GLSPIRV "Build MojoShader with support for the ARB_gl_spirv profile" ON) OPTION(EFFECT_SUPPORT "Build MojoShader with support for Effect framework files" ON) -OPTION(COMPILER_SUPPORT "Build MojoShader with support for HLSL source files" OFF) +OPTION(COMPILER_SUPPORT "Build MojoShader with support for HLSL source files" ON) OPTION(FLIP_VIEWPORT "Build MojoShader with the ability to flip the GL viewport" OFF) OPTION(DEPTH_CLIPPING "Build MojoShader with the ability to simulate [0, 1] depth clipping" OFF) OPTION(XNA4_VERTEXTEXTURE "Build MojoShader with XNA4 vertex texturing behavior" OFF)