reactos/dll/win32/browseui/shellbars/CMakeLists.txt
Jérôme Gardou 907025a018 [CMAKE] Introduce the atl_classes interface library
This takes care of adding the relvant include directory and the _ATL_NO_EXCEPTIONS define, if needed
2020-10-20 21:44:54 +02:00

23 lines
470 B
CMake

PROJECT(SHELL)
add_definitions(-DUNICODE -D_UNICODE)
list(APPEND SOURCE
CBandSite.cpp
CBandSiteMenu.cpp
CBaseBar.cpp
CISFBand.cpp
CSHEnumClassesOfCategories.cpp
shellbars.h)
add_library(shellbars OBJECT ${SOURCE})
target_link_libraries(shellbars PRIVATE atl_classes)
if(NOT MSVC)
target_compile_options(shellbars PRIVATE "-Wno-unused-but-set-variable")
endif()
add_pch(shellbars shellbars.h SOURCE)
add_dependencies(shellbars xdk psdk)