[SHELLFIND] Add CSearchBar
[reactos.git] / dll / win32 / browseui / shellfind / CMakeLists.txt
1
2 PROJECT(SHELL)
3
4 set_cpp(WITH_RUNTIME)
5
6 add_definitions(-DUNICODE -D_UNICODE)
7 add_definitions(-D_ATL_NO_EXCEPTIONS)
8
9 include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/atl)
10
11 list(APPEND SOURCE
12 CSearchBar.cpp
13 shellfind.h)
14
15 add_library(shellfind ${SOURCE})
16
17 if(NOT MSVC)
18 add_target_compile_flags(shellfind "-Wno-unused-but-set-variable")
19 endif()
20
21 add_pch(shellfind shellfind.h SOURCE)