[CMAKE]
[reactos.git] / base / shell / explorer-new / CMakeLists.txt
1
2 set_unicode()
3
4 add_definitions(-DWIN32)
5
6 list(APPEND SOURCE
7 desktop.c
8 dragdrop.c
9 explorer.c
10 startmnu.c
11 taskband.c
12 taskswnd.c
13 tbsite.c
14 trayntfy.c
15 trayprop.c
16 traywnd.c
17 explorer.rc)
18
19 add_executable(explorer_new ${CMAKE_CURRENT_BINARY_DIR}/explorer_new_precomp.h.gch ${SOURCE})
20
21 target_link_libraries(explorer_new uuid)
22
23 add_pch(explorer_new ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
24 set_module_type(explorer_new win32gui)
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
39 add_cab_target(explorer_new 4)