reactos/dll/win32/shell32/CMakeLists.txt
Sylvain Petreolle 89271fe38d [CMAKE]
Add each win32dll module to livecd and remove global temporary add-on from gcc.cmake.
Fix pch use in fmifs.
Enable remaining dlls in dll/win32/CMakeLists.txt.

svn path=/branches/cmake-bringup/; revision=49230
2010-10-22 19:40:56 +00:00

97 lines
1.9 KiB
CMake

list(APPEND SOURCE
authors.c
autocomplete.c
brsfolder.c
changenotify.c
classes.c
clipboard.c
control.c
dataobject.c
dde.c
debughlp.c
desktop.c
dialogs.c
dragdrophelper.c
enumidlist.c
extracticon.c
folders.c
iconcache.c
pidl.c
regsvr.c
shell32_main.c
shellitem.c
shelllink.c
shellole.c
shellord.c
shellpath.c
shellreg.c
shellstring.c
shfldr_desktop.c
shfldr_fs.c
shfldr_mycomp.c
shfldr_mydocuments.c
shfldr_printers.c
shfldr_admintools.c
shfldr_netplaces.c
shfldr_fonts.c
shfldr_cpanel.c
shfldr_recyclebin.c
shlexec.c
shlfileop.c
shlfolder.c
shlfsbind.c
shlmenu.c
shlview.c
shpolicy.c
shv_def_cmenu.c
startmenu.c
stubs.c
ros-systray.c
fprop.c
drive.c
she_ocmenu.c
shv_item_new.c
folder_options.c
shell32.rc)
remove_definitions(-D_WIN32_WINNT=0x502)
add_definitions(-D_WIN32_WINNT=0x600)
add_definitions(-D_SHELL32_)
add_definitions(-DCOM_NO_WINDOWS_H)
add_definitions(-D_WINE)
spec2def(shell32 ${CMAKE_CURRENT_SOURCE_DIR}/shell32.spec ${CMAKE_CURRENT_BINARY_DIR}/shell32.def)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
include_directories(${REACTOS_SOURCE_DIR}/lib/recyclebin)
include_directories(${REACTOS_SOURCE_DIR})
add_pch(shell32 ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
add_library(shell32 SHARED ${CMAKE_CURRENT_BINARY_DIR}/shell32_precomp.h.gch ${SOURCE})
set_module_type(shell32 win32dll)
target_link_libraries(shell32
${CMAKE_CURRENT_BINARY_DIR}/shell32.def
wine
uuid
recyclebin)
add_importlibs(shell32
advapi32
gdi32
user32
comctl32
comdlg32
shlwapi
ole32
version
devmgr
winspool
winmm
kernel32
msvcrt
ntdll)
add_dependencies(shell32 shell32_def)
add_livecd_target(shell32 reactos/system32)