mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00

Add more dll/ and drivers/ modules to bootcd. Fix mesa32 definitions. svn path=/branches/cmake-bringup/; revision=49483
38 lines
No EOL
659 B
CMake
38 lines
No EOL
659 B
CMake
|
|
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
|
|
kernel32
|
|
ntdll)
|
|
|
|
add_cab_target(explorer_new 4) |