# ######################################################################## # Copyright (c) 2016-2021 Advanced Micro Devices, Inc. # ######################################################################## # Helper cmake script to automate building dependencies for rocsolver # This script can be invoked manually by the user with 'cmake -P' cmake_minimum_required( VERSION 3.8 ) list( APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/cmake ) # This has to be initialized before the project() command appears # Set the default of CMAKE_BUILD_TYPE to Release if( NOT DEFINED CMAKE_CONFIGURATION_TYPES AND NOT DEFINED CMAKE_BUILD_TYPE ) set( CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel." ) endif() # The superbuild does not build anything itself; all compiling is done in external projects project( rocsolver-dependencies NONE ) option( BUILD_GTEST "Download and build googletest library" ON ) option( BUILD_LAPACK "Download and build lapack library" ON ) # This module scrapes the CMakeCache.txt file and attempts to get all the cli options the user specified to cmake invocation include( get-cli-arguments ) # The following is a series of super-build projects; this cmake project will download and build if( BUILD_GTEST ) include( external-gtest ) list( APPEND rocsolver_dependencies googletest ) set( gtest_custom_target COMMAND cd ${GTEST_BINARY_ROOT}$ ${CMAKE_COMMAND} --build . --target install ) endif( ) if( BUILD_LAPACK ) include( external-lapack ) list( APPEND rocsolver_dependencies lapack ) set( lapack_custom_target COMMAND cd ${LAPACK_BINARY_ROOT}$ ${CMAKE_COMMAND} --build . --target install ) endif( ) # POLICY CMP0037 - "Target names should not be reserved and should match a validity pattern" # Familiar target names like 'install' should be OK at the super-build level if( POLICY CMP0037 ) cmake_policy( SET CMP0037 OLD ) endif( ) add_custom_target( install ${gtest_custom_target} ${lapack_custom_target} DEPENDS ${rocsolver_dependencies} )