reactos/dll/win32/browseui/shellfind/CMakeLists.txt

24 lines
453 B
CMake
Raw Normal View History

2019-07-19 02:15:01 +00:00
PROJECT(SHELL)
set_cpp(WITH_RUNTIME)
add_definitions(-DUNICODE -D_UNICODE)
add_definitions(-D_ATL_NO_EXCEPTIONS)
include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/atl)
list(APPEND SOURCE
CSearchBar.cpp
2019-07-19 20:23:20 +00:00
CFindFolder.cpp
2019-07-19 02:15:01 +00:00
shellfind.h)
add_library(shellfind ${SOURCE})
if(NOT MSVC)
target_compile_options(shellfind PRIVATE "-Wno-unused-but-set-variable")
2019-07-19 02:15:01 +00:00
endif()
add_pch(shellfind shellfind.h SOURCE)
add_dependencies(shellfind psdk)