[BROWSEUI] -Move the following classes to a new static lib called shellbars: CBandSit...
[reactos.git] / reactos / dll / win32 / browseui / shellbars / CMakeLists.txt
1 PROJECT(SHELL)
2
3 set_cpp(WITH_RUNTIME)
4
5 add_definitions(-DUNICODE -D_UNICODE)
6
7 include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/atl)
8
9 list(APPEND SOURCE
10 CBandSite.cpp
11 CBandSiteMenu.cpp
12 CBaseBar.cpp
13 CSHEnumClassesOfCategories.cpp)
14
15 add_library(shellbars ${SOURCE})
16 add_dependencies(shellbars xdk)
17
18 if(NOT MSVC)
19 if(NOT CMAKE_C_COMPILER_ID STREQUAL "Clang")
20 add_target_compile_flags(shellbars "-Wno-unused-but-set-variable")
21 endif()
22 endif()