From 2494b475e3d6958e77f9b87beeac414eacfae53a Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Thu, 16 Jun 2011 19:15:05 +0000 Subject: [PATCH] [WINDOWSCODECS] Fix build with gcc here as well svn path=/trunk/; revision=52283 --- reactos/dll/win32/windowscodecs/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/windowscodecs/CMakeLists.txt b/reactos/dll/win32/windowscodecs/CMakeLists.txt index 92968e15529..d99a32ce498 100644 --- a/reactos/dll/win32/windowscodecs/CMakeLists.txt +++ b/reactos/dll/win32/windowscodecs/CMakeLists.txt @@ -41,11 +41,11 @@ list(APPEND SOURCE ${CMAKE_CURRENT_BINARY_DIR}/windowscodecs_stubs.c ${CMAKE_CURRENT_BINARY_DIR}/windowscodecs.def) -#if(MSVC) +if(MSVC) set_source_files_properties(${REACTOS_BINARY_DIR}/include/psdk/wincodec_i.c PROPERTIES GENERATED TRUE) list(APPEND SOURCE ${REACTOS_BINARY_DIR}/include/psdk/wincodec_i.c) -#endif() +endif() add_library(windowscodecs SHARED ${SOURCE})