2023-12-25 13:29:57 +00:00
|
|
|
|
|
|
|
spec2def(msutb.dll msutb.spec ADD_IMPORTLIB)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
msutb.cpp)
|
|
|
|
|
|
|
|
#file(GLOB msutb_rc_deps res/*.*)
|
|
|
|
#add_rc_deps(msutb.rc ${msutb_rc_deps})
|
|
|
|
|
|
|
|
add_library(msutb MODULE
|
|
|
|
${SOURCE}
|
|
|
|
msutb.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/msutb.def)
|
2024-02-17 00:53:50 +00:00
|
|
|
set_module_type(msutb win32dll UNICODE)
|
2023-12-25 13:29:57 +00:00
|
|
|
add_dependencies(msutb msctf psdk)
|
2024-02-17 00:53:50 +00:00
|
|
|
target_link_libraries(msutb wine uuid atl_classes cicero)
|
2024-01-09 07:57:30 +00:00
|
|
|
add_importlibs(msutb user32 gdi32 advapi32 msvcrt kernel32 ntdll)
|
2024-03-17 02:55:19 +00:00
|
|
|
add_delay_importlibs(msutb uxtheme imm32 shlwapi comctl32 msctf ole32 oleacc oleaut32 shell32)
|
2023-12-25 13:29:57 +00:00
|
|
|
add_cd_file(TARGET msutb DESTINATION reactos/system32 FOR all)
|