2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
|
2011-06-26 21:29:55 +00:00
|
|
|
spec2def(fusion.dll fusion.spec)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
asmcache.c
|
|
|
|
asmenum.c
|
|
|
|
asmname.c
|
|
|
|
assembly.c
|
|
|
|
fusion.c
|
2014-02-10 12:19:56 +00:00
|
|
|
fusionpriv.h
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/fusion_stubs.c)
|
|
|
|
|
|
|
|
add_library(fusion SHARED
|
|
|
|
${SOURCE}
|
|
|
|
version.rc
|
2011-05-16 13:12:07 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/fusion.def)
|
|
|
|
|
|
|
|
set_module_type(fusion win32dll)
|
2014-01-23 11:22:13 +00:00
|
|
|
target_link_libraries(fusion uuid wine)
|
2013-05-04 20:21:39 +00:00
|
|
|
add_importlibs(fusion advapi32 dbghelp shlwapi user32 msvcrt kernel32 ntdll)
|
2014-02-10 12:19:56 +00:00
|
|
|
add_pch(fusion fusionpriv.h SOURCE)
|
2012-04-30 19:14:43 +00:00
|
|
|
add_cd_file(TARGET fusion DESTINATION reactos/Microsoft.NET/Framework/v1.0.3705 FOR all)
|
2012-03-16 22:04:47 +00:00
|
|
|
add_cd_file(TARGET fusion DESTINATION reactos/Microsoft.NET/Framework/v1.1.4322 FOR all)
|
2012-03-16 20:58:54 +00:00
|
|
|
add_cd_file(TARGET fusion DESTINATION reactos/Microsoft.NET/Framework/v2.0.50727 FOR all)
|
2012-05-19 09:41:07 +00:00
|
|
|
add_cd_file(TARGET fusion DESTINATION reactos/system32 FOR all)
|