reactos/base/applications/utilman/umandlg/CMakeLists.txt
George Bișoc 2c80432268
[UTILMAN] Use the ShellAboutW API routine to display the about dialog (#2743)
In addition to that, add the missing function prototypes in the DLL dialog header of Utilman, add missing IN/OUT annotations and remove CheckUtilityState() prototype which is barely used (it's not implemented either).
2020-05-07 13:01:36 +02:00

15 lines
383 B
CMake

spec2def(umandlg.dll umandlg.spec)
add_library(umandlg MODULE
process.c
registry.c
umandlg.c
umandlg.h
umandlg.rc
${CMAKE_CURRENT_BINARY_DIR}/umandlg.def)
set_module_type(umandlg win32dll UNICODE)
add_importlibs(umandlg comdlg32 user32 gdi32 advapi32 shell32 comctl32 msvcrt kernel32 ntdll)
add_cd_file(TARGET umandlg DESTINATION reactos/system32 FOR all)