https://git.reactos.org/?p=reactos.git;a=commitdiff;h=ed3bdb44f5bd82c585f24…
commit ed3bdb44f5bd82c585f24e781d70889082d3da9c
Author: Amine Khaldi <amine.khaldi(a)reactos.org>
AuthorDate: Fri Nov 24 12:07:56 2017 +0100
[DLLIMPORT_TEST] Skip this module in the clang-cl build until framedyn is back in it.
CORE-11799
---
modules/rostests/tests/dllexport/CMakeLists.txt | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/modules/rostests/tests/dllexport/CMakeLists.txt
b/modules/rostests/tests/dllexport/CMakeLists.txt
index a204ad395f..76c883af9a 100644
--- a/modules/rostests/tests/dllexport/CMakeLists.txt
+++ b/modules/rostests/tests/dllexport/CMakeLists.txt
@@ -27,6 +27,9 @@ if(MSVC)
add_compile_flags("/Zc:wchar_t-")
endif()
+# framedyn is skipped in the clang-cl build
+if(NOT USE_CLANG_CL)
+
add_library(dllimport_test SHARED dllimport_framedyn.cpp)
set_module_type(dllimport_test module)
add_importlibs(dllimport_test framedyn)
@@ -34,3 +37,5 @@ add_importlibs(dllimport_test framedyn)
if(NOT MSVC)
target_link_libraries(dllimport_test framedynex)
endif()
+
+endif()