2011-05-16 13:12:07 +00:00
|
|
|
|
2014-02-04 10:41:02 +00:00
|
|
|
PROJECT(SHELL)
|
|
|
|
|
2011-05-16 13:12:07 +00:00
|
|
|
add_definitions(-DWIN32)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
desktop.c
|
|
|
|
dragdrop.c
|
|
|
|
explorer.c
|
2014-02-04 10:41:02 +00:00
|
|
|
rshell.c
|
2013-01-06 10:08:10 +00:00
|
|
|
settings.c
|
2014-07-05 00:35:43 +00:00
|
|
|
shellservice.c
|
2011-05-16 13:12:07 +00:00
|
|
|
startmnu.c
|
2013-01-13 10:38:47 +00:00
|
|
|
startup.c
|
2011-05-16 13:12:07 +00:00
|
|
|
taskband.c
|
|
|
|
taskswnd.c
|
|
|
|
tbsite.c
|
|
|
|
trayntfy.c
|
|
|
|
trayprop.c
|
|
|
|
traywnd.c
|
2014-02-12 11:00:35 +00:00
|
|
|
precomp.h)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2014-03-07 22:39:49 +00:00
|
|
|
add_executable(explorer ${SOURCE} explorer.rc)
|
2014-08-20 16:19:00 +00:00
|
|
|
target_link_libraries(explorer uuid wine)
|
2014-03-07 22:39:49 +00:00
|
|
|
set_module_type(explorer win32gui UNICODE)
|
|
|
|
add_importlibs(explorer
|
2012-12-23 14:37:22 +00:00
|
|
|
advapi32
|
|
|
|
gdi32
|
|
|
|
user32
|
|
|
|
comctl32
|
|
|
|
ole32
|
|
|
|
oleaut32
|
|
|
|
shell32
|
|
|
|
shlwapi
|
2013-11-21 11:34:56 +00:00
|
|
|
shdocvw
|
2012-12-23 14:37:22 +00:00
|
|
|
version
|
|
|
|
uxtheme
|
|
|
|
msvcrt
|
|
|
|
kernel32
|
|
|
|
ntdll)
|
2014-03-07 22:39:49 +00:00
|
|
|
add_pch(explorer precomp.h SOURCE)
|
|
|
|
add_cd_file(TARGET explorer DESTINATION reactos FOR all)
|