821d88fa17e65f9d6b6f8c7db6e35a58b268c735
[reactos.git] / base / shell / explorer-new / CMakeLists.txt
1 PROJECT(SHELL)
2
3 set_cpp(WITH_RUNTIME)
4
5 include_directories(${REACTOS_SOURCE_DIR}/lib/atl)
6
7 list(APPEND SOURCE
8 desktop.cpp
9 dragdrop.cpp
10 explorer.cpp
11 rshell.cpp
12 settings.cpp
13 shellservice.cpp
14 startmnu.cpp
15 startup.cpp
16 taskband.cpp
17 taskswnd.cpp
18 tbsite.cpp
19 trayntfy.cpp
20 trayprop.cpp
21 traywnd.cpp
22 util.cpp
23 precomp.h)
24
25 add_executable(explorer ${SOURCE} explorer.rc)
26
27 target_link_libraries(explorer uuid atlnew wine)
28
29 set_module_type(explorer win32gui UNICODE)
30 add_importlibs(explorer advapi32 gdi32 user32 comctl32 ole32 oleaut32 shell32 browseui shlwapi shdocvw version uxtheme msvcrt kernel32 ntdll)
31
32 add_pch(explorer precomp.h SOURCE)
33
34 add_cd_file(TARGET explorer DESTINATION reactos FOR all)