
spec2def(fusion.dll fusion.spec)

list(APPEND COMMON_SOURCE
    asmcache.c
    asmenum.c
    asmname.c
    assembly.c
    fusion.c
    precomp.h
    ${CMAKE_CURRENT_BINARY_DIR}/fusion_stubs.c)

add_library(fusion_common STATIC ${COMMON_SOURCE})
target_compile_definitions(fusion_common PRIVATE _CRT_NON_CONFORMING_SWPRINTFS)
target_link_libraries(fusion_common oldnames)
add_dependencies(fusion_common psdk)
add_pch(fusion_common precomp.h COMMON_SOURCE)
set_wine_module_FIXME(fusion_common) # CORE-5743: No ARRAY_SIZE and CONST_VTABLE

add_library(fusion MODULE
    version.rc
    ${CMAKE_CURRENT_BINARY_DIR}/fusion.def)

set_module_type(fusion win32dll)
target_link_libraries(fusion fusion_common uuid wine)
add_importlibs(fusion bcrypt advapi32 dbghelp shlwapi user32 msvcrt kernel32 ntdll)
add_cd_file(TARGET fusion DESTINATION reactos/Microsoft.NET/Framework/v1.0.3705 FOR all)
add_cd_file(TARGET fusion DESTINATION reactos/system32 FOR all)

add_subdirectory(fusion_1_1)
add_subdirectory(fusion_2_0)
