mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c2d0d784c7
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
35 lines
928 B
CMake
35 lines
928 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
spec2def(shlwapi.dll shlwapi.spec)
|
|
|
|
list(APPEND SOURCE
|
|
assoc.c
|
|
clist.c
|
|
istream.c
|
|
msgbox.c
|
|
ordinal.c
|
|
path.c
|
|
reg.c
|
|
regstream.c
|
|
shlwapi_main.c
|
|
stopwatch.c
|
|
string.c
|
|
thread.c
|
|
url.c
|
|
wsprintf.c
|
|
shlwapi.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/shlwapi_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/shlwapi.def)
|
|
|
|
add_library(shlwapi SHARED ${SOURCE})
|
|
set_module_type(shlwapi win32dll)
|
|
target_link_libraries(shlwapi wine uuid)
|
|
add_delay_importlibs(shlwapi userenv oleaut32 ole32 comctl32 comdlg32 mpr mlang urlmon shell32 winmm version)
|
|
add_importlibs(shlwapi user32 gdi32 advapi32 msvcrt wininet kernel32 ntdll)
|
|
add_cd_file(TARGET shlwapi DESTINATION reactos/system32 FOR all)
|
|
add_importlib_target(shlwapi.spec)
|