mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00

- Move more dlls with no stubs into using def files instead of spec files. svn path=/branches/cmake-bringup/; revision=49450
28 lines
527 B
CMake
28 lines
527 B
CMake
|
|
list(APPEND SOURCE
|
|
logon.c
|
|
main.c
|
|
misc.c
|
|
query.c
|
|
security.c
|
|
server.c
|
|
ws.c
|
|
winsta.rc
|
|
winsta.def)
|
|
|
|
if(NOT MSVC)
|
|
set_source_files_properties(winsta.def PROPERTIES EXTERNAL_OBJECT TRUE)
|
|
endif()
|
|
|
|
add_library(winsta SHARED
|
|
${CMAKE_CURRENT_BINARY_DIR}/winsta_winsta.h.gch
|
|
${SOURCE})
|
|
|
|
set_module_type(winsta win32dll)
|
|
|
|
target_link_libraries(winsta wine)
|
|
|
|
add_importlibs(winsta kernel32 ntdll)
|
|
add_pch(winsta ${CMAKE_CURRENT_SOURCE_DIR}/winsta.h ${SOURCE})
|
|
|
|
add_cab_target(winsta 1)
|