Alexey Komarov:
- More work on base modules.
- Add some dlls to build.

svn path=/branches/cmake-bringup/; revision=48996
This commit is contained in:
Amine Khaldi 2010-10-05 13:03:47 +00:00
parent fa0db12e2a
commit 08265cb095
25 changed files with 310 additions and 20 deletions

View file

@ -1,4 +1,4 @@
add_subdirectory(cmd)
add_subdirectory(explorer)
#add_subdirectory(explorer_new)
add_subdirectory(explorer-new)

View file

@ -0,0 +1,34 @@
set_unicode()
add_definitions(-DWIN32)
list(APPEND SOURCE
desktop.c
dragdrop.c
explorer.c
startmnu.c
taskband.c
taskswnd.c
tbsite.c
trayntfy.c
trayprop.c
traywnd.c
explorer.rc)
add_executable(explorer_new ${CMAKE_CURRENT_BINARY_DIR}/explorer_new_precomp.h.gch ${SOURCE})
target_link_libraries(explorer_new uuid)
add_pch(explorer_new ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h SOURCE)
set_module_type(explorer_new win32gui)
add_importlibs(explorer_new
advapi32
gdi32
user32
comctl32
ole32
oleaut32
shell32
shlwapi
msvcrt)