reactos/dll/win32/winsta/CMakeLists.txt
Amine Khaldi ddb3d908c9 * Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
svn path=/branches/shell-experiments/; revision=62286
2014-02-22 10:31:26 +00:00

24 lines
460 B
CMake

spec2def(winsta.dll winsta.spec)
list(APPEND SOURCE
logon.c
main.c
misc.c
query.c
security.c
server.c
ws.c
winsta.h)
add_library(winsta SHARED
${SOURCE}
winsta.rc
${CMAKE_CURRENT_BINARY_DIR}/winsta.def)
set_module_type(winsta win32dll)
target_link_libraries(winsta wine)
add_importlibs(winsta msvcrt kernel32 ntdll)
add_pch(winsta winsta.h SOURCE)
add_cd_file(TARGET winsta DESTINATION reactos/system32 FOR all)