Author: akhaldi
Date: Wed Oct 1 11:12:48 2014
New Revision: 64437
URL:
http://svn.reactos.org/svn/reactos?rev=64437&view=rev
Log:
[HNETCFG][OLEACC][WBEMDISP]
* Add missing stdole2 dependency. Spotted by Thomas Kriese.
CORE-8585 #resolve #comment Fixed in r64437. Thanks!
Modified:
trunk/reactos/dll/win32/hnetcfg/CMakeLists.txt
trunk/reactos/dll/win32/oleacc/CMakeLists.txt
trunk/reactos/dll/win32/wbemdisp/CMakeLists.txt
Modified: trunk/reactos/dll/win32/hnetcfg/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/hnetcfg/CMakeLis…
==============================================================================
--- trunk/reactos/dll/win32/hnetcfg/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/hnetcfg/CMakeLists.txt [iso-8859-1] Wed Oct 1 11:12:48 2014
@@ -27,6 +27,7 @@
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)
Modified: trunk/reactos/dll/win32/oleacc/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/oleacc/CMakeList…
==============================================================================
--- trunk/reactos/dll/win32/oleacc/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/oleacc/CMakeLists.txt [iso-8859-1] Wed Oct 1 11:12:48 2014
@@ -17,6 +17,7 @@
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)
Modified: trunk/reactos/dll/win32/wbemdisp/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/wbemdisp/CMakeLi…
==============================================================================
--- trunk/reactos/dll/win32/wbemdisp/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/wbemdisp/CMakeLists.txt [iso-8859-1] Wed Oct 1 11:12:48 2014
@@ -26,7 +26,7 @@
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)