[CMAKE]
[reactos.git] / 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 ${CMAKE_CURRENT_BINARY_DIR}/explorer_new_precomp.h.gch ${SOURCE})
22
23 target_link_libraries(explorer_new uuid)
24
25 add_pch(explorer_new ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
26 set_module_type(explorer_new win32gui)
27 add_importlibs(explorer_new
28 advapi32
29 gdi32
30 user32
31 comctl32
32 ole32
33 oleaut32
34 shell32
35 shlwapi
36 version
37 msvcrt
38 kernel32
39 ntdll)
40
41 add_cab_target(explorer_new 4)