mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
296192685b
- Rewrite SHChangeNotify, SHChangeNotifyRegister, SHChangeNotify_Lock, SHChangeNotify_Unlock and SHChangeNotifyDeregister functions. - Fix SHSimpleIDListFromPathA/W functions. CORE-13950
18 lines
323 B
CMake
18 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)
|