From 561cd5cd3e14f39d20d02eed6d86f95f4146eea9 Mon Sep 17 00:00:00 2001 From: samelian Date: Wed, 11 May 2011 18:45:21 +0000 Subject: [kdegraphics] added cmake support for libkscan and kooka git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1231423 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- libkscan/ConfigureChecks.cmake | 48 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 libkscan/ConfigureChecks.cmake (limited to 'libkscan/ConfigureChecks.cmake') diff --git a/libkscan/ConfigureChecks.cmake b/libkscan/ConfigureChecks.cmake new file mode 100644 index 00000000..203bf375 --- /dev/null +++ b/libkscan/ConfigureChecks.cmake @@ -0,0 +1,48 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +if( NOT HAVE_SANE ) + message( STATUS "checking for 'sane'..." ) +endif( ) + +# find sane-config +find_program( SANE_EXECUTABLE NAMES sane-config ) +if( NOT SANE_EXECUTABLE ) + tde_message_fatal( "sane-config is NOT found.\n sane library is installed?" ) +endif( ) + +macro( __run_sane_config __type __var ) + execute_process( + COMMAND ${SANE_EXECUTABLE} --${__type} + OUTPUT_VARIABLE ${__var} + RESULT_VARIABLE __result + OUTPUT_STRIP_TRAILING_WHITESPACE ) + if( _result ) + tde_message_fatal( "Unable to run ${SANE_EXECUTABLE}!\n sane library is correctly installed?\n Path to sane-config is corect?" ) + endif( ) +endmacro( ) + +__run_sane_config( version SANE_VERSION ) +__run_sane_config( cflags SANE_INCLUDE_DIRS ) +__run_sane_config( libs SANE_LIBRARIES ) + +# cleanup +if( SANE_INCLUDE_DIRS ) + string( REGEX REPLACE "(^| )-I" ";" SANE_INCLUDE_DIRS "${SANE_INCLUDE_DIRS}" ) +endif( ) +if( SANE_LIBRARIES ) + string( REGEX REPLACE "(^| )-l" ";" SANE_LIBRARIES "${SANE_LIBRARIES}" ) + string( REPLACE " " "" SANE_LIBRARIES "${SANE_LIBRARIES}" ) +endif( ) + +if( NOT HAVE_SANE ) + message( STATUS " found 'sane', version ${SANE_VERSION}" ) +endif( ) -- cgit v1.2.1