2011-05-16 13:12:07 +00:00
|
|
|
|
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
|
|
|
add_definitions(-D__WINESRC__)
|
2011-06-26 21:29:55 +00:00
|
|
|
spec2def(olecli32.dll olecli32.spec)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
olecli_main.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/olecli32_stubs.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/olecli32.def)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(olecli32 MODULE ${SOURCE})
|
2013-02-23 16:45:48 +00:00
|
|
|
set_module_type(olecli32 win32dll)
|
2021-04-22 15:28:52 +00:00
|
|
|
target_link_libraries(olecli32 wine ${PSEH_LIB})
|
2014-10-17 23:28:29 +00:00
|
|
|
add_importlibs(olecli32 ole32 gdi32 msvcrt kernel32 ntdll)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET olecli32 DESTINATION reactos/system32 FOR all)
|