reactos/dll/win32/shell32/shelldesktop/CMakeLists.txt
Katayama Hirofumi MZ 2727245c86
[SHELL32] Shell notify rework for simplicity and readability (#2539)
Shell change notification has been implemented in #2432. But as @yagoulas said, source code structure is in mess. We improved simplicity and human readability of our source code.
- Move wine/changenotify.c code into changenotify.c and shelldesktop/CChangeNotify.cpp.
- Simplify code and rename the identifiers and add many comments. CORE-13950
2020-04-13 10:36:24 +09:00

19 lines
329 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
CChangeNotifyServer.cpp
CDesktopBrowser.cpp
dde.cpp)
add_library(shelldesktop ${SOURCE})
add_dependencies(shelldesktop xdk psdk)