reactos/dll/win32/shell32/shelldesktop/CMakeLists.txt
Katayama Hirofumi MZ 1f31905ecd
[SHELL32] Optimize change notification (#3030)
- Keep the directory lists only.
- Don't remember file sizes and normal file paths.
CORE-13950
2020-08-10 13:34:48 +09:00

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