mirror of
https://github.com/reactos/reactos
synced 2025-10-05 16:02:58 +02:00
- Move sdk\include\reactos\wine to sdk\include\wine - Reorder the directories in include_directories() to be closer to alphabetical. This should make it easier to determine what global include directories can be removed in the future.
26 lines
528 B
CMake
26 lines
528 B
CMake
|
|
spec2def(winsta.dll winsta.spec)
|
|
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/wine)
|
|
|
|
list(APPEND SOURCE
|
|
logon.c
|
|
main.c
|
|
misc.c
|
|
query.c
|
|
security.c
|
|
server.c
|
|
ws.c
|
|
winsta.h)
|
|
|
|
add_library(winsta MODULE
|
|
${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)
|