summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-23 18:24:01 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-23 18:24:01 +0900
commit395099e0a39bc705fbf64b691bdf54010ff8ce4a (patch)
tree7bc2c1eb9785ac150f149b459347dd06c5ca4bc9 /ConfigureChecks.cmake
parentedec55bd87ab07aaa2a36666abfb17b23b2ed7d1 (diff)
downloadkommando-395099e0a39bc705fbf64b691bdf54010ff8ce4a.tar.gz
kommando-395099e0a39bc705fbf64b691bdf54010ff8ce4a.zip
Add detection of libxmu-dev
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake8
1 files changed, 8 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 0b84648..6f8c441 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -24,3 +24,11 @@ tde_setup_largefiles( )
if( WITH_GCC_VISIBILITY )
tde_setup_gcc_visibility( )
endif( WITH_GCC_VISIBILITY )
+
+
+##### check required packages
+
+pkg_search_module( XMU xmu )
+if( NOT XMU_FOUND )
+ tde_message_fatal( "xmu is required, but was not found on your system" )
+endif( )