From a97eac202cec673a0f2e27e808cfdcdd29289c4e Mon Sep 17 00:00:00 2001 From: Tim Foley Date: Wed, 19 Jul 2017 11:27:23 -0700 Subject: Build a dynamic library for Slang - Change the `slang` project from a static library to a dynamic one - Add some details around `slang.h` to make sure DLL export stuff is working - Make the `slangc` executable use the dynamic library - Rename the `glslang` sub-project to `slang-glslang` and move it into the main source hierarchy - This reflects the fact that it isn't a stand-alone tool, and isn't in any way a standard binary of glslang, but rather just an artifact of how Slang uses glslang --- slang.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'slang.h') diff --git a/slang.h b/slang.h index 70f070816..a9b69d705 100644 --- a/slang.h +++ b/slang.h @@ -2,7 +2,7 @@ #define SLANG_H #ifdef _MSC_VER -#ifdef SLANG_COMPILING_DLL +#ifdef SLANG_DYNAMIC_EXPORT #define SLANG_API __declspec(dllexport) #else #ifdef SLANG_DYNAMIC -- cgit v1.2.3