reactos/dll/win32/shell32/shelldesktop/CMakeLists.txt
Katayama Hirofumi MZ 296192685b
[SHELL32] Implement shell change notification (#2432)
- Rewrite SHChangeNotify, SHChangeNotifyRegister, SHChangeNotify_Lock, SHChangeNotify_Unlock and SHChangeNotifyDeregister functions.
- Fix SHSimpleIDListFromPathA/W functions.
CORE-13950
2020-04-09 07:30:14 +09:00

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