* Sync up to trunk HEAD (r62286).
[reactos.git] / dll / win32 / winsta / CMakeLists.txt
1
2 spec2def(winsta.dll winsta.spec)
3
4 list(APPEND SOURCE
5 logon.c
6 main.c
7 misc.c
8 query.c
9 security.c
10 server.c
11 ws.c
12 winsta.h)
13
14 add_library(winsta SHARED
15 ${SOURCE}
16 winsta.rc
17 ${CMAKE_CURRENT_BINARY_DIR}/winsta.def)
18
19 set_module_type(winsta win32dll)
20 target_link_libraries(winsta wine)
21 add_importlibs(winsta msvcrt kernel32 ntdll)
22 add_pch(winsta winsta.h SOURCE)
23 add_cd_file(TARGET winsta DESTINATION reactos/system32 FOR all)