1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/lib/CMakeLists.txt
patrick96 923d9ae061 Add cmake files for configuring individual targets
This makes the code a bit less messy. We barely need if(BUILD_...)
guards inside the cmake files, just the root CMakeLists.txt.
2020-12-24 02:20:38 +01:00

44 lines
1 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()
# }}}