aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/cmake/FindGOTO.cmake
blob: 1e0dbabaffa881ff33ccd4ce18b6bc1727a90624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# include(FindLibraryWithDebug)

if (GOTO_INCLUDES AND GOTO_LIBRARIES)
  set(GOTO_FIND_QUIETLY TRUE)
endif (GOTO_INCLUDES AND GOTO_LIBRARIES)

find_path(GOTO_INCLUDES
  NAMES
  cblas.h
  PATHS
  $ENV{GOTODIR}/include
  ${INCLUDE_INSTALL_DIR}
)

find_file(GOTO_LIBRARIES libgoto.so PATHS /usr/lib $ENV{GOTODIR} ${LIB_INSTALL_DIR})
find_library(GOTO_LIBRARIES goto PATHS $ENV{GOTODIR} ${LIB_INSTALL_DIR})

if(GOTO_LIBRARIES AND CMAKE_COMPILER_IS_GNUCXX)
  set(GOTO_LIBRARIES ${GOTO_LIBRARIES} "-lpthread -lgfortran")
endif()

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(GOTO DEFAULT_MSG
                                  GOTO_INCLUDES GOTO_LIBRARIES)

mark_as_advanced(GOTO_INCLUDES GOTO_LIBRARIES)