2011-05-16 13:12:07 +00:00
|
|
|
|
2011-06-13 15:31:11 +00:00
|
|
|
add_definitions(-D__WINESRC__)
|
2022-03-13 00:25:47 +00:00
|
|
|
remove_definitions(-D_CRT_NON_CONFORMING_SWPRINTFS)
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/wine)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2014-02-09 10:40:34 +00:00
|
|
|
list(APPEND SOURCE
|
2011-05-16 13:12:07 +00:00
|
|
|
msiexec.c
|
|
|
|
service.c
|
2014-02-09 10:40:34 +00:00
|
|
|
precomp.h)
|
|
|
|
|
2015-06-26 18:04:31 +00:00
|
|
|
add_rc_deps(rsrc.rc ${CMAKE_CURRENT_SOURCE_DIR}/msiexec.ico)
|
2014-02-09 10:40:34 +00:00
|
|
|
add_executable(msiexec ${SOURCE} rsrc.rc)
|
2011-05-16 13:12:07 +00:00
|
|
|
set_module_type(msiexec win32gui)
|
|
|
|
target_link_libraries(msiexec uuid wine)
|
2022-03-13 22:41:18 +00:00
|
|
|
add_importlibs(msiexec user32 advapi32 ole32 comctl32 msi msvcrt kernel32 ntdll)
|
2014-02-09 10:40:34 +00:00
|
|
|
add_pch(msiexec precomp.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET msiexec DESTINATION reactos/system32 FOR all)
|