b2494a84a00aa6690f1a1ec7e655f42c2b4485be
[reactos.git] / reactos / 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 startmnu.c
9 taskband.c
10 taskswnd.c
11 tbsite.c
12 trayntfy.c
13 trayprop.c
14 traywnd.c
15 explorer.rc)
16
17 add_executable(explorer_new ${SOURCE})
18 target_link_libraries(explorer_new uuid)
19 set_module_type(explorer_new win32gui UNICODE)
20 add_importlibs(explorer_new
21 advapi32
22 gdi32
23 user32
24 comctl32
25 ole32
26 oleaut32
27 shell32
28 shlwapi
29 version
30 uxtheme
31 msvcrt
32 kernel32
33 ntdll)
34 add_pch(explorer_new precomp.h)
35 add_cd_file(TARGET explorer_new DESTINATION reactos FOR all)