reactos/dll/cpl/appwiz/CMakeLists.txt
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

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)