polybar-dwm/lib/CMakeLists.txt
patrick96 1dc8d2f30e cmake: Make xrandr and xcomposite required
They were required before, but could technically be deactived (the
compilation would fail, but configuration was possible).

The WITH_XRANDR and WITH_XCOMPOSITE now no longer appear in the cmake
part. It still appears in the source code, but is always set to 1

Fixes #1536
2020-12-22 00:37:07 +01:00

45 lines
1.0 KiB
CMake

#
# Configure libs
#
# Library: concurrentqueue {{{
add_library(moodycamel INTERFACE)
target_include_directories(moodycamel SYSTEM INTERFACE ${CMAKE_CURRENT_LIST_DIR}/concurrentqueue/include)
# }}}
# Library: xpp {{{
set(XCB_PROTOS xproto)
list(APPEND XCB_PROTOS randr)
list(APPEND XCB_PROTOS composite)
if(WITH_XKB)
list(APPEND XCB_PROTOS xkb)
endif()
add_subdirectory(xpp)
if (NOT TARGET xpp)
message(FATAL_ERROR "Target xpp not generated")
else()
get_target_property(_xpp_includes xpp INCLUDE_DIRECTORIES)
set_target_properties(xpp PROPERTIES INCLUDE_DIRECTORIES "")
target_include_directories(xpp SYSTEM PUBLIC ${_xpp_includes})
endif()
# }}}
# Library: i3ipcpp {{{
if(ENABLE_I3)
add_subdirectory(i3ipcpp)
if (NOT TARGET i3ipc++)
message(FATAL_ERROR "Target i3ipcpp not generated")
else()
get_target_property(_i3ipcpp_includes i3ipc++ INCLUDE_DIRECTORIES)
set_target_properties(i3ipc++ PROPERTIES INCLUDE_DIRECTORIES "")
target_include_directories(i3ipc++ SYSTEM PUBLIC ${_i3ipcpp_includes})
endif()
endif()
# }}}