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(msisys.ocx msisys.ocx.spec)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
msisys.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/msisys.def)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(msisys MODULE ${SOURCE})
|
2011-05-16 13:12:07 +00:00
|
|
|
set_module_type(msisys win32ocx)
|
2013-09-22 16:53:31 +00:00
|
|
|
target_link_libraries(msisys wine)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_importlibs(msisys msvcrt kernel32 ntdll)
|
|
|
|
add_cd_file(TARGET msisys DESTINATION reactos/system32 FOR all)
|