mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
55343f04b0
CORE-17505 In MSVC builds they would not work reliably when enabled in the precompiled header
22 lines
423 B
CMake
22 lines
423 B
CMake
project(SHELL)
|
|
|
|
add_definitions(
|
|
-DUNICODE
|
|
-D_UNICODE)
|
|
|
|
if(DBG)
|
|
add_definitions(-D_DEBUG=1) # CORE-17505
|
|
endif()
|
|
|
|
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)
|