mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[HNETCFG][OLEACC][WBEMDISP]
* Add missing stdole2 dependency. Spotted by Thomas Kriese. CORE-8585 #resolve #comment Fixed in r64437. Thanks! svn path=/trunk/; revision=64437
This commit is contained in:
parent
e5a8b6e721
commit
a8763f5e13
3 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue