2010-08-22 22:52:07 +00:00
|
|
|
|
|
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
|
2010-11-29 23:08:38 +00:00
|
|
|
set_rc_compiler()
|
2010-12-17 21:54:56 +00:00
|
|
|
|
2010-10-30 16:08:19 +00:00
|
|
|
spec2def(credui.dll credui.spec)
|
2010-08-22 22:52:07 +00:00
|
|
|
|
2010-11-29 23:08:38 +00:00
|
|
|
list(APPEND SOURCE
|
|
|
|
credui_main.c
|
|
|
|
credui.rc
|
2011-01-31 14:20:53 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/credui_stubs.c
|
2010-11-29 23:08:38 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/credui.def)
|
|
|
|
|
|
|
|
add_library(credui SHARED ${SOURCE})
|
2010-08-22 22:52:07 +00:00
|
|
|
|
2010-10-02 22:19:59 +00:00
|
|
|
set_module_type(credui win32dll)
|
2010-08-22 22:52:07 +00:00
|
|
|
|
2010-10-30 16:08:19 +00:00
|
|
|
target_link_libraries(credui wine)
|
2010-08-22 22:52:07 +00:00
|
|
|
|
2010-11-27 00:36:28 +00:00
|
|
|
add_importlibs(credui advapi32 user32 comctl32 msvcrt kernel32 ntdll)
|
2010-12-10 16:08:35 +00:00
|
|
|
add_importlib_target(credui.spec)
|
2010-10-30 09:53:53 +00:00
|
|
|
add_cab_target(credui 1)
|