mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
23373acbb9
There is no need to compile our DLLs as shared libraries since we are managing symbols exports and imports through spec files. On my system, this reduces the configure-time by a factor of two.
15 lines
561 B
CMake
15 lines
561 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
add_typelib(std_ole_v1.idl)
|
|
spec2def(stdole32.tlb stdole32.tlb.spec)
|
|
|
|
list(APPEND SOURCE
|
|
rsrc.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/stdole32.def)
|
|
|
|
set_source_files_properties(rsrc.rc PROPERTIES OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/std_ole_v1.tlb)
|
|
add_library(stdole32.tlb MODULE ${SOURCE})
|
|
set_module_type(stdole32.tlb module)
|
|
set_target_properties(stdole32.tlb PROPERTIES SUFFIX "")
|
|
add_cd_file(TARGET stdole32.tlb DESTINATION reactos/system32 FOR all)
|