Warning, /office/calligra/cmake/modules/FindVc.cmake is written in an unsupported language. File is not indexed.

0001 # Locate the Vc template library. Vc can be found at http://gitorious.org/Vc/
0002 #
0003 # Copyright 2009-2012   Matthias Kretz <kretz@kde.org>
0004 #
0005 # This file is meant to be copied into projects that want to use Vc. It will
0006 # search for VcConfig.cmake, which ships with Vc and will provide up-to-date
0007 # buildsystem changes. Thus there should not be any need to update FindVc.cmake
0008 # again after you integrated it into your project.
0009 #
0010 # This module defines the following variables:
0011 # Vc_FOUND
0012 # Vc_INCLUDE_DIR
0013 # Vc_LIBRARIES
0014 # Vc_DEFINITIONS
0015 # Vc_VERSION_MAJOR
0016 # Vc_VERSION_MINOR
0017 # Vc_VERSION_PATCH
0018 # Vc_VERSION
0019 # Vc_VERSION_STRING
0020 # Vc_INSTALL_DIR
0021 # Vc_LIB_DIR
0022 # Vc_CMAKE_MODULES_DIR
0023 #
0024 # The following two variables are set according to the compiler used. Feel free
0025 # to use them to skip whole compilation units.
0026 # Vc_SSE_INTRINSICS_BROKEN
0027 # Vc_AVX_INTRINSICS_BROKEN
0028 
0029 find_package(Vc ${Vc_FIND_VERSION} QUIET NO_MODULE PATHS $ENV{HOME} /opt/Vc)
0030 
0031 include(FindPackageHandleStandardArgs)
0032 find_package_handle_standard_args(Vc CONFIG_MODE REQUIRED_VARS Vc_LIBRARIES)