Author: spetreolle Date: Thu Jun 23 09:41:36 2011 New Revision: 52433
URL: http://svn.reactos.org/svn/reactos?rev=52433&view=rev Log: [CMAKE] Fix mshtml.tlb build with Visual Studio. With mshtml_tlb and mshtml.tlb targets, the solution contained 2 mshtml_tlb targets.
Modified: trunk/reactos/dll/win32/mshtml.tlb/CMakeLists.txt
Modified: trunk/reactos/dll/win32/mshtml.tlb/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/mshtml.tlb/CMakeL... ============================================================================== --- trunk/reactos/dll/win32/mshtml.tlb/CMakeLists.txt [iso-8859-1] (original) +++ trunk/reactos/dll/win32/mshtml.tlb/CMakeLists.txt [iso-8859-1] Thu Jun 23 09:41:36 2011 @@ -1,6 +1,6 @@
-add_typelib(mshtml_tlb mshtml_tlb.idl) -add_dependencies(mshtml_tlb stdole2) +add_typelib(mshtml__tlb mshtml_tlb.idl) +add_dependencies(mshtml__tlb stdole2)
add_definitions(-D__WINESRC__)
@@ -10,5 +10,5 @@
set_entrypoint(mshtml.tlb 0) set_target_properties(mshtml.tlb PROPERTIES SUFFIX "") -add_dependencies(mshtml.tlb mshtml_tlb) +add_dependencies(mshtml.tlb mshtml__tlb) add_cd_file(TARGET mshtml.tlb DESTINATION reactos/system32 FOR all)