[NET]
[reactos.git] / reactos / base / shell / explorer-new / CMakeLists.txt
1
2 add_definitions(-DWIN32)
3
4 list(APPEND SOURCE
5 desktop.c
6 dragdrop.c
7 explorer.c
8 settings.c
9 startmnu.c
10 startup.c
11 taskband.c
12 taskswnd.c
13 tbsite.c
14 trayntfy.c
15 trayprop.c
16 traywnd.c
17 precomp.h)
18
19 add_executable(explorer_new ${SOURCE} explorer.rc)
20 target_link_libraries(explorer_new uuid)
21 set_module_type(explorer_new win32gui UNICODE)
22 add_importlibs(explorer_new advapi32 gdi32 user32 comctl32 ole32 oleaut32 shell32 shlwapi shdocvw version uxtheme msvcrt kernel32 ntdll)
23 add_pch(explorer_new precomp.h SOURCE)
24 add_cd_file(TARGET explorer_new DESTINATION reactos FOR all)