diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-23 18:24:01 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-23 18:24:01 +0900 |
commit | 395099e0a39bc705fbf64b691bdf54010ff8ce4a (patch) | |
tree | 7bc2c1eb9785ac150f149b459347dd06c5ca4bc9 /ConfigureChecks.cmake | |
parent | edec55bd87ab07aaa2a36666abfb17b23b2ed7d1 (diff) | |
download | kommando-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.cmake | 8 |
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( ) |