2017-12-09 19:46:40 +00:00
|
|
|
|
2017-04-09 13:51:39 +00:00
|
|
|
PROJECT(SHELL)
|
|
|
|
|
|
|
|
set_cpp(WITH_RUNTIME)
|
|
|
|
|
|
|
|
add_definitions(-DUNICODE -D_UNICODE)
|
2017-10-22 15:59:01 +00:00
|
|
|
add_definitions(-D_ATL_NO_EXCEPTIONS)
|
2017-04-09 13:51:39 +00:00
|
|
|
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/atl)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
CBandSite.cpp
|
|
|
|
CBandSiteMenu.cpp
|
|
|
|
CBaseBar.cpp
|
2017-10-16 20:56:34 +00:00
|
|
|
CISFBand.cpp
|
2017-12-09 19:46:40 +00:00
|
|
|
CSHEnumClassesOfCategories.cpp
|
|
|
|
shellbars.h)
|
2017-04-09 13:51:39 +00:00
|
|
|
|
|
|
|
add_library(shellbars ${SOURCE})
|
2017-10-22 15:59:01 +00:00
|
|
|
|
2017-04-09 13:51:39 +00:00
|
|
|
if(NOT MSVC)
|
2017-10-27 21:18:01 +00:00
|
|
|
add_target_compile_flags(shellbars "-Wno-unused-but-set-variable")
|
2017-04-09 13:51:39 +00:00
|
|
|
endif()
|
2017-12-09 19:46:40 +00:00
|
|
|
|
|
|
|
add_pch(shellbars shellbars.h SOURCE)
|
|
|
|
add_dependencies(shellbars xdk)
|