Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / base / system / msiexec / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/sdk/include/wine)
4
5 list(APPEND SOURCE
6 msiexec.c
7 service.c
8 precomp.h)
9
10 add_rc_deps(rsrc.rc ${CMAKE_CURRENT_SOURCE_DIR}/msiexec.ico)
11 add_executable(msiexec ${SOURCE} rsrc.rc)
12 set_module_type(msiexec win32gui)
13 target_link_libraries(msiexec uuid wine)
14 add_importlibs(msiexec user32 advapi32 ole32 msi msvcrt kernel32 ntdll)
15 add_pch(msiexec precomp.h SOURCE)
16 add_cd_file(TARGET msiexec DESTINATION reactos/system32 FOR all)