fix(cmake): Properly check xcb-xrm
The default value of WITH_XRM was never calculated because the "IF NOT DEFINED" check was done after the call to option() Refs #381
This commit is contained in:
parent
162e77793a
commit
b97e4c56c5
@ -43,6 +43,15 @@ endif()
|
|||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
# Default value for: WITH_XRM {{{
|
||||||
|
|
||||||
|
if(NOT DEFINED WITH_XRM)
|
||||||
|
pkg_check_modules(XRM QUIET xcb-xrm)
|
||||||
|
set(WITH_XRM ${XRM_FOUND} CACHE BOOL "Enable xcb-xrm support")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# }}}
|
||||||
|
|
||||||
# Define build options {{{
|
# Define build options {{{
|
||||||
|
|
||||||
option(CXXLIB_CLANG "Link against libc++" OFF)
|
option(CXXLIB_CLANG "Link against libc++" OFF)
|
||||||
@ -74,11 +83,6 @@ option(WITH_XCOMPOSITE "xcb-composite support" OFF)
|
|||||||
option(WITH_XKB "xcb-xkb support" ON)
|
option(WITH_XKB "xcb-xkb support" ON)
|
||||||
option(WITH_XRM "xcb-xrm support" ON)
|
option(WITH_XRM "xcb-xrm support" ON)
|
||||||
|
|
||||||
if(NOT DEFINED WITH_XRM)
|
|
||||||
pkg_check_modules(XRM QUIET xcb-xrm)
|
|
||||||
set(WITH_XRM ${XRM_FOUND} CACHE BOOL "Enable xcb-xrm support")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(NOT DEFINED ENABLE_XRANDR_MONITORS)
|
if(NOT DEFINED ENABLE_XRANDR_MONITORS)
|
||||||
pkg_check_modules(XRANDR QUIET xrandr>=1.5.0 randrproto>=1.5.0 xcb-proto>=1.12)
|
pkg_check_modules(XRANDR QUIET xrandr>=1.5.0 randrproto>=1.5.0 xcb-proto>=1.12)
|
||||||
if(NOT XRANDR_FOUND)
|
if(NOT XRANDR_FOUND)
|
||||||
|
Loading…
Reference in New Issue
Block a user