mirror of
https://github.com/reactos/reactos.git
synced 2025-01-11 08:38:17 +00:00
2541969bd0
- More work on the base modules. svn path=/branches/cmake-bringup/; revision=49062
15 lines
304 B
CMake
15 lines
304 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/wine)
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
add_executable(msiexec
|
|
msiexec.c
|
|
service.c
|
|
rsrc.rc)
|
|
|
|
set_module_type(msiexec win32gui)
|
|
|
|
target_link_libraries(msiexec uuid wine)
|
|
|
|
add_importlibs(msiexec user32 advapi32 ole32 msi msvcrt kernel32 ntdll)
|
|
|