2017-12-09 19:46:40 +00:00
|
|
|
|
2017-04-09 13:51:39 +00:00
|
|
|
PROJECT(SHELL)
|
|
|
|
|
|
|
|
add_definitions(-DUNICODE -D_UNICODE)
|
|
|
|
|
|
|
|
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
|
|
|
|
2020-09-18 09:08:58 +00:00
|
|
|
add_library(shellbars OBJECT ${SOURCE})
|
|
|
|
target_link_libraries(shellbars PRIVATE atl_classes)
|
2017-10-22 15:59:01 +00:00
|
|
|
|
2021-04-09 00:58:19 +00:00
|
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
|
|
|
|
target_compile_options(shellbars PRIVATE -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)
|
2020-06-06 20:55:49 +00:00
|
|
|
add_dependencies(shellbars xdk psdk)
|