mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
b9041e39bf
Add base/ modules to bootcd. svn path=/branches/cmake-bringup/; revision=49477
17 lines
No EOL
368 B
CMake
17 lines
No EOL
368 B
CMake
add_definitions(-D_DLL -D__USE_CRTIMP)
|
|
|
|
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)
|
|
|
|
add_cab_target(msiexec 1) |