mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 22:52:46 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
23 lines
636 B
CMake
23 lines
636 B
CMake
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
spec2def(appwiz.cpl appwiz.spec)
|
|
|
|
add_library(appwiz SHARED
|
|
addons.c
|
|
appwiz.c
|
|
createlink.c
|
|
appwiz.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/appwiz.def)
|
|
|
|
set_module_type(appwiz cpl UNICODE)
|
|
target_link_libraries(appwiz uuid wine)
|
|
add_importlibs(appwiz urlmon ole32 comctl32 advapi32 shell32 user32 msvcrt kernel32 ntdll)
|
|
add_delay_importlibs(appwiz msi)
|
|
add_pch(appwiz appwiz.h)
|
|
add_cd_file(TARGET appwiz DESTINATION reactos/system32 FOR all)
|