Commit 7a1a77b6 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

makedep: Install also generated typelib for installed idl files.

parent b1084ff9
......@@ -2829,6 +2829,9 @@ static void output_source_idl( struct makefile *make, struct incl_file *source,
if (source->file->flags & FLAG_IDL_HEADER)
add_install_rule( make, source->name, strmake( "%s.h", obj ),
strmake( "d$(includedir)/wine/%s.h", get_include_install_path( obj ) ));
if (source->file->flags & FLAG_IDL_TYPELIB)
add_install_rule( make, source->name, strmake( "%s.tlb", obj ),
strmake( "d$(includedir)/wine/%s.tlb", get_include_install_path( obj ) ));
}
if (!targets.count) return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment