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