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