reactos/dll/win32/shell32/shelldesktop/CMakeLists.txt
Katayama Hirofumi MZ 7c9a8c0b89
[SHELL32] Improve readability of filesystem notification (#2737)
Improve human readability of filesystem change notification.
- Rename the identifiers for human readabilities.
- Split the code into CFilePathList and CDirectoryWatcher classes.
- Encapsulation of code.
CORE-13950
2020-06-02 18:42:07 +09:00

21 lines
377 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
CDirectoryWatcher.cpp
CFilePathList.cpp
dde.cpp)
add_library(shelldesktop ${SOURCE})
add_dependencies(shelldesktop xdk psdk)