* Sync up to trunk HEAD (r62286).
[reactos.git] / base / shell / explorer-new / CMakeLists.txt
1
2 add_definitions(-DWIN32)
3
4 list(APPEND SOURCE
5 desktop.c
6 dragdrop.c
7 explorer.c
8 settings.c
9 startmnu.c
10 startup.c
11 taskband.c
12 taskswnd.c
13 tbsite.c
14 trayntfy.c
15 trayprop.c
16 traywnd.c
17 precomp.h)
18
19 add_executable(explorer_new ${SOURCE} explorer.rc)
20 target_link_libraries(explorer_new uuid)
21 set_module_type(explorer_new win32gui UNICODE)
22 add_importlibs(explorer_new
23 advapi32
24 gdi32
25 user32
26 comctl32
27 ole32
28 oleaut32
29 shell32
30 shlwapi
31 shdocvw
32 version
33 uxtheme
34 msvcrt
35 kernel32
36 ntdll)
37 add_pch(explorer_new precomp.h SOURCE)
38 add_cd_file(TARGET explorer_new DESTINATION reactos FOR all)