Synchronize with trunk r58606.
[reactos.git] / dll / win32 / newdev / CMakeLists.txt
1
2
3 spec2def(newdev.dll newdev.spec ADD_IMPORTLIB)
4
5 list(APPEND SOURCE
6 newdev.c
7 stubs.c
8 wizard.c
9 rsrc.rc
10 ${CMAKE_CURRENT_BINARY_DIR}/newdev_stubs.c
11 ${CMAKE_CURRENT_BINARY_DIR}/newdev.def)
12
13 add_library(newdev SHARED ${SOURCE})
14 set_module_type(newdev win32dll UNICODE)
15 target_link_libraries(newdev wine)
16 add_importlibs(newdev gdi32 comctl32 setupapi advapi32 user32 shell32 msvcrt kernel32 ntdll)
17 add_pch(newdev newdev_private.h)
18 add_cd_file(TARGET newdev DESTINATION reactos/system32 FOR all)
19