mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
907025a018
This takes care of adding the relvant include directory and the _ATL_NO_EXCEPTIONS define, if needed
18 lines
361 B
CMake
18 lines
361 B
CMake
project(SHELL)
|
|
|
|
add_definitions(
|
|
-DUNICODE
|
|
-D_UNICODE)
|
|
|
|
list(APPEND SOURCE
|
|
CMenuBand.cpp
|
|
CMenuDeskBar.cpp
|
|
CMenuFocusManager.cpp
|
|
CMenuSite.cpp
|
|
CMenuToolbars.cpp
|
|
CMergedFolder.cpp
|
|
CStartMenu.cpp)
|
|
|
|
add_library(shellmenu OBJECT ${SOURCE})
|
|
target_link_libraries(shellmenu PRIVATE atl_classes)
|
|
add_dependencies(shellmenu xdk psdk)
|