2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
add_definitions(-D__WINESRC__)
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2011-05-16 13:12:07 +00:00
|
|
|
spec2def(activeds.dll activeds.spec)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
activeds_main.c
|
|
|
|
stubs.c
|
2014-02-10 12:19:56 +00:00
|
|
|
precomp.h)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(activeds MODULE
|
2014-02-10 12:19:56 +00:00
|
|
|
${SOURCE}
|
2011-05-16 13:12:07 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/activeds.def)
|
|
|
|
|
|
|
|
set_module_type(activeds win32dll)
|
|
|
|
target_link_libraries(activeds wine)
|
|
|
|
add_importlibs(activeds msvcrt kernel32 ntdll)
|
2014-02-10 12:19:56 +00:00
|
|
|
add_pch(activeds precomp.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET activeds DESTINATION reactos/system32 FOR all)
|