From a8763f5e134bd2ea6c5672791463547f2157a95a Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Wed, 1 Oct 2014 11:12:48 +0000 Subject: [PATCH] [HNETCFG][OLEACC][WBEMDISP] * Add missing stdole2 dependency. Spotted by Thomas Kriese. CORE-8585 #resolve #comment Fixed in r64437. Thanks! svn path=/trunk/; revision=64437 --- reactos/dll/win32/hnetcfg/CMakeLists.txt | 1 + reactos/dll/win32/oleacc/CMakeLists.txt | 1 + reactos/dll/win32/wbemdisp/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/dll/win32/hnetcfg/CMakeLists.txt b/reactos/dll/win32/hnetcfg/CMakeLists.txt index b42abf08d44..6aa4f10ad4e 100644 --- a/reactos/dll/win32/hnetcfg/CMakeLists.txt +++ b/reactos/dll/win32/hnetcfg/CMakeLists.txt @@ -27,6 +27,7 @@ list(APPEND hnetcfg_rc_deps set_source_files_properties(hnetcfg.rc PROPERTIES OBJECT_DEPENDS "${hnetcfg_rc_deps}") set_module_type(hnetcfg win32dll) +add_dependencies(hnetcfg stdole2) target_link_libraries(hnetcfg wine uuid) add_importlibs(hnetcfg ole32 oleaut32 advapi32 msvcrt kernel32 ntdll) add_pch(hnetcfg hnetcfg_private.h SOURCE) diff --git a/reactos/dll/win32/oleacc/CMakeLists.txt b/reactos/dll/win32/oleacc/CMakeLists.txt index 173ecd55882..566d1edf5d8 100644 --- a/reactos/dll/win32/oleacc/CMakeLists.txt +++ b/reactos/dll/win32/oleacc/CMakeLists.txt @@ -17,6 +17,7 @@ list(APPEND oleacc_rc_deps set_source_files_properties(oleacc.rc PROPERTIES OBJECT_DEPENDS "${oleacc_rc_deps}") add_library(oleacc SHARED ${SOURCE} oleacc.rc) +add_dependencies(oleacc stdole2) set_module_type(oleacc win32dll) target_link_libraries(oleacc wine) add_importlibs(oleacc user32 msvcrt kernel32 ntdll) diff --git a/reactos/dll/win32/wbemdisp/CMakeLists.txt b/reactos/dll/win32/wbemdisp/CMakeLists.txt index c750c91329c..d30ee33a9ee 100644 --- a/reactos/dll/win32/wbemdisp/CMakeLists.txt +++ b/reactos/dll/win32/wbemdisp/CMakeLists.txt @@ -26,7 +26,7 @@ add_library(wbemdisp SHARED set_module_type(wbemdisp win32dll) target_link_libraries(wbemdisp uuid wine) -add_dependencies(wbemdisp wbemdisp_idlheader) +add_dependencies(wbemdisp stdole2 wbemdisp_idlheader) add_importlibs(wbemdisp oleaut32 msvcrt kernel32 ntdll) add_pch(wbemdisp wbemdisp_private.h SOURCE) add_cd_file(TARGET wbemdisp DESTINATION reactos/system32/wbem FOR all)