mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
907025a018
This takes care of adding the relvant include directory and the _ATL_NO_EXCEPTIONS define, if needed
17 lines
338 B
CMake
17 lines
338 B
CMake
project(SHELL)
|
|
|
|
add_definitions(
|
|
-DUNICODE
|
|
-D_UNICODE)
|
|
|
|
|
|
list(APPEND SOURCE
|
|
CChangeNotifyServer.cpp
|
|
CDesktopBrowser.cpp
|
|
CDirectoryWatcher.cpp
|
|
CDirectoryList.cpp
|
|
dde.cpp)
|
|
|
|
add_library(shelldesktop OBJECT ${SOURCE})
|
|
target_link_libraries(shelldesktop PRIVATE atl_classes)
|
|
add_dependencies(shelldesktop xdk psdk)
|