mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
22 lines
405 B
CMake
22 lines
405 B
CMake
project(SHELL)
|
|
|
|
set_cpp(WITH_RUNTIME)
|
|
|
|
add_definitions(
|
|
-DUNICODE
|
|
-D_UNICODE
|
|
-D_ATL_NO_EXCEPTIONS)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/atl)
|
|
|
|
list(APPEND SOURCE
|
|
CMenuBand.cpp
|
|
CMenuDeskBar.cpp
|
|
CMenuFocusManager.cpp
|
|
CMenuSite.cpp
|
|
CMenuToolbars.cpp
|
|
CMergedFolder.cpp
|
|
CStartMenu.cpp)
|
|
|
|
add_library(shellmenu ${SOURCE})
|
|
add_dependencies(shellmenu xdk psdk)
|