2008-12-09 01:39:30 +03:00
#
# ---- Find Squish
# This module can be used to find Squish (currently support is aimed at version 3).
#
# ---- Variables and Macros
2009-10-19 20:58:40 +04:00
# SQUISH_FOUND If false, don't try to use Squish
2008-12-09 01:39:30 +03:00
#
2009-10-19 20:58:40 +04:00
# SQUISH_INSTALL_DIR The Squish installation directory (containing bin, lib, etc)
# SQUISH_SERVER_EXECUTABLE The squishserver executable
# SQUISH_CLIENT_EXECUTABLE The squishrunner executable
2008-12-09 01:39:30 +03:00
#
2009-10-19 20:58:40 +04:00
# SQUISH_INSTALL_DIR_FOUND Was the install directory found?
# SQUISH_SERVER_EXECUTABLE_FOUND Was the server executable found?
# SQUISH_CLIENT_EXECUTABLE_FOUND Was the client executable found?
2008-12-09 01:39:30 +03:00
#
# macro SQUISH_ADD_TEST(testName applicationUnderTest testSuite testCase)
#
# ---- Typical Use
2012-08-13 21:47:32 +04:00
# enable_testing()
# find_package(Squish)
# if (SQUISH_FOUND)
2009-10-19 20:58:40 +04:00
# SQUISH_ADD_TEST(myTestName myApplication testSuiteName testCaseName)
2012-08-13 21:50:14 +04:00
# endif ()
2008-12-09 01:39:30 +03:00
#
2009-09-28 19:45:50 +04:00
#=============================================================================
# Copyright 2008-2009 Kitware, Inc.
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
2010-08-07 04:48:47 +04:00
# (To distribute this file outside of CMake, substitute the full
2009-09-28 19:45:50 +04:00
# License text for the above reference.)
2012-08-13 21:47:32 +04:00
set ( SQUISH_INSTALL_DIR_STRING "Directory containing the bin, doc, and lib directories for Squish; this should be the root of the installation directory." )
set ( SQUISH_SERVER_EXECUTABLE_STRING "The squishserver executable program." )
set ( SQUISH_CLIENT_EXECUTABLE_STRING "The squishclient executable program." )
2008-12-09 01:39:30 +03:00
# Search only if the location is not already known.
2012-08-13 21:47:32 +04:00
if ( NOT SQUISH_INSTALL_DIR )
2008-12-09 01:39:30 +03:00
# Get the system search path as a list.
2012-08-13 21:47:32 +04:00
file ( TO_CMAKE_PATH "$ENV{PATH}" SQUISH_INSTALL_DIR_SEARCH2 )
2008-12-09 01:39:30 +03:00
# Construct a set of paths relative to the system search path.
2012-08-13 21:47:32 +04:00
set ( SQUISH_INSTALL_DIR_SEARCH "" )
foreach ( dir ${ SQUISH_INSTALL_DIR_SEARCH2 } )
set ( SQUISH_INSTALL_DIR_SEARCH ${ SQUISH_INSTALL_DIR_SEARCH } "${dir}/../lib/fltk" )
2012-08-13 21:50:14 +04:00
endforeach ( )
2012-08-13 21:47:32 +04:00
string ( REPLACE "//" "/" SQUISH_INSTALL_DIR_SEARCH "${SQUISH_INSTALL_DIR_SEARCH}" )
2008-12-09 01:39:30 +03:00
# Look for an installation
2012-08-13 21:47:32 +04:00
find_path ( SQUISH_INSTALL_DIR bin/squishrunner
2012-03-29 02:00:54 +04:00
H I N T S
2008-12-09 01:39:30 +03:00
# Look for an environment variable SQUISH_INSTALL_DIR.
2012-03-29 02:00:54 +04:00
E N V S Q U I S H _ I N S T A L L _ D I R
2008-12-09 01:39:30 +03:00
# Look in places relative to the system executable search path.
$ { S Q U I S H _ I N S T A L L _ D I R _ S E A R C H }
# Look in standard UNIX install locations.
#/usr/local/squish
D O C " T h e $ { S Q U I S H _ I N S T A L L _ D I R _ S T R I N G } "
)
2012-08-13 21:50:14 +04:00
endif ( )
2008-12-09 01:39:30 +03:00
# search for the executables
2012-08-13 21:47:32 +04:00
if ( SQUISH_INSTALL_DIR )
set ( SQUISH_INSTALL_DIR_FOUND 1 )
2008-12-09 01:39:30 +03:00
# find the client program
2012-08-13 21:47:32 +04:00
if ( NOT SQUISH_CLIENT_EXECUTABLE )
find_program ( SQUISH_CLIENT_EXECUTABLE ${ SQUISH_INSTALL_DIR } /bin/squishrunner DOC "The ${SQUISH_CLIENT_EXECUTABLE_STRING}" )
2012-08-13 21:50:14 +04:00
endif ( )
2008-12-09 01:39:30 +03:00
# find the server program
2012-08-13 21:47:32 +04:00
if ( NOT SQUISH_SERVER_EXECUTABLE )
find_program ( SQUISH_SERVER_EXECUTABLE ${ SQUISH_INSTALL_DIR } /bin/squishserver DOC "The ${SQUISH_SERVER_EXECUTABLE_STRING}" )
2012-08-13 21:50:14 +04:00
endif ( )
2008-12-09 01:39:30 +03:00
2012-08-13 21:50:14 +04:00
else ( )
2012-08-13 21:47:32 +04:00
set ( SQUISH_INSTALL_DIR_FOUND 0 )
2012-08-13 21:50:14 +04:00
endif ( )
2008-12-09 01:39:30 +03:00
# record if executables are set
2012-08-13 21:47:32 +04:00
if ( SQUISH_CLIENT_EXECUTABLE )
set ( SQUISH_CLIENT_EXECUTABLE_FOUND 1 )
2012-08-13 21:50:14 +04:00
else ( )
2012-08-13 21:47:32 +04:00
set ( SQUISH_CLIENT_EXECUTABLE_FOUND 0 )
2012-08-13 21:50:14 +04:00
endif ( )
2012-08-13 21:47:32 +04:00
if ( SQUISH_SERVER_EXECUTABLE )
set ( SQUISH_SERVER_EXECUTABLE_FOUND 1 )
2012-08-13 21:50:14 +04:00
else ( )
2012-08-13 21:47:32 +04:00
set ( SQUISH_SERVER_EXECUTABLE_FOUND 0 )
2012-08-13 21:50:14 +04:00
endif ( )
2008-12-09 01:39:30 +03:00
# record if Squish was found
2012-08-13 21:47:32 +04:00
set ( SQUISH_FOUND 1 )
foreach ( var SQUISH_INSTALL_DIR_FOUND SQUISH_CLIENT_EXECUTABLE_FOUND SQUISH_SERVER_EXECUTABLE_FOUND )
if ( NOT ${ var } )
set ( SQUISH_FOUND 0 )
2012-08-13 21:50:14 +04:00
endif ( )
endforeach ( )
2012-08-13 21:47:32 +04:00
macro ( SQUISH_ADD_TEST testName testAUT testCase envVars testWraper )
add_test ( ${ testName }
2008-12-09 01:39:30 +03:00
$ { C M A K E _ C O M M A N D } - V - V V
" - D s q u i s h _ a u t : S T R I N G = $ { t e s t A U T } "
" - D s q u i s h _ s e r v e r _ e x e c u t a b l e : S T R I N G = $ { S Q U I S H _ S E R V E R _ E X E C U T A B L E } "
" - D s q u i s h _ c l i e n t _ e x e c u t a b l e : S T R I N G = $ { S Q U I S H _ C L I E N T _ E X E C U T A B L E } "
" - D s q u i s h _ l i b q t d i r : S T R I N G = $ { Q T _ L I B R A R Y _ D I R } "
" - D s q u i s h _ t e s t _ c a s e : S T R I N G = $ { t e s t C a s e } "
" - D s q u i s h _ e n v _ v a r s : S T R I N G = $ { e n v V a r s } "
" - D s q u i s h _ w r a p p e r : S T R I N G = $ { t e s t W r a p e r } "
- P " $ { C M A K E _ R O O T } / M o d u l e s / S q u i s h T e s t S c r i p t . c m a k e "
)
2012-08-13 21:47:32 +04:00
set_tests_properties ( ${ testName }
2008-12-09 01:39:30 +03:00
P R O P E R T I E S F A I L _ R E G U L A R _ E X P R E S S I O N " F A I L E D ; E R R O R ; F A T A L "
)
2012-08-13 21:50:14 +04:00
endmacro ( )
2012-08-13 21:42:58 +04:00