https://github.com/root-project/root
Raw File
Tip revision: c16a0eb67e8a320e16e725c159e386e1dbed4711 authored by David Abdurachmanov on 26 October 2016, 13:47:08 UTC
Set code model to Large for PowerPC64 (aka ppc64le)
Tip revision: c16a0eb
FindAlien.cmake
# Find the Alien includes and library.
#
# This module defines
# ALIEN_INCLUDE_DIR, where to locate gapiUI.h file
# ALIEN_LIBRARY, the libraries to link against to use Alien
# ALIEN_LIBRARIES, the libraries to link against to use Alien
# ALIEN_FOUND.  If false, you cannot build anything that requires Alien.

set(ALIEN_FOUND 0)
if(ALIEN_LIBRARY AND ALIEN_INCLUDE_DIR)
  set(ALIEN_FIND_QUIETLY TRUE)
endif()

find_path(ALIEN_INCLUDE_DIR gapiUI.h PATHS
  ${ALIEN_DIR}/include $ENV{ALIEN_DIR}/include
  /usr/local/include
  /opt/alien/api/include
  /opt/monalisa/include
  /usr/include
  DOC "Specify the directory containing gapiUI.h"
)

find_library(ALIEN_LIBRARY NAMES gapiUI PATHS
  ${ALIEN_DIR}/lib $ENV{ALIEN_DIR}/lib
  /usr/local/lib
  /opt/alien/api/lib
  /opt/monalisa/lib
  /usr/lib
  DOC "Specify the libgapiUI library here."
)

if(ALIEN_INCLUDE_DIR AND ALIEN_LIBRARY)
  set(ALIEN_FOUND 1 )
  if(NOT ALIEN_FIND_QUIETLY)
     message(STATUS "Found Alien includes at ${ALIEN_INCLUDE_DIR}")
     message(STATUS "Found Alien library at ${ALIEN_LIBRARY}")
  endif()
endif()

set(ALIEN_LIBRARIES ${ALIEN_LIBRARY})

mark_as_advanced(ALIEN_LIBRARY ALIEN_INCLUDE_DIR)
back to top