Always attempt to find Nanos6 and NODES
Causes the packages to always appear as found or not found in the summary of cmake. Otherwise they were only checked if the compiler supports the -fompss2 flag.
This commit is contained in:
parent
2b2a0eea8e
commit
1918ab6669
@ -1,7 +1,9 @@
|
|||||||
# Copyright (c) 2022-2023 Barcelona Supercomputing Center (BSC)
|
# Copyright (c) 2022-2023 Barcelona Supercomputing Center (BSC)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
find_package(Nanos6)
|
||||||
include(CheckOmpSs2Compiler)
|
include(CheckOmpSs2Compiler)
|
||||||
|
|
||||||
if(NOT OMPSS2_COMPILER_FOUND)
|
if(NOT OMPSS2_COMPILER_FOUND)
|
||||||
if(ENABLE_ALL_TESTS)
|
if(ENABLE_ALL_TESTS)
|
||||||
message(FATAL_ERROR "Compiler doesn't support -fompss-2 flag, cannot enable Nanos6 RT tests")
|
message(FATAL_ERROR "Compiler doesn't support -fompss-2 flag, cannot enable Nanos6 RT tests")
|
||||||
@ -11,7 +13,6 @@ if(NOT OMPSS2_COMPILER_FOUND)
|
|||||||
return()
|
return()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
find_package(Nanos6)
|
|
||||||
if(NOT NANOS6_FOUND)
|
if(NOT NANOS6_FOUND)
|
||||||
if(ENABLE_ALL_TESTS)
|
if(ENABLE_ALL_TESTS)
|
||||||
message(FATAL_ERROR "Nanos6 not found, cannot enable Nanos6 RT tests")
|
message(FATAL_ERROR "Nanos6 not found, cannot enable Nanos6 RT tests")
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
# Copyright (c) 2022-2023 Barcelona Supercomputing Center (BSC)
|
# Copyright (c) 2022-2023 Barcelona Supercomputing Center (BSC)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
find_package(Nodes)
|
||||||
include(CheckOmpSs2Compiler)
|
include(CheckOmpSs2Compiler)
|
||||||
|
|
||||||
if(NOT OMPSS2_COMPILER_FOUND)
|
if(NOT OMPSS2_COMPILER_FOUND)
|
||||||
if(ENABLE_ALL_TESTS)
|
if(ENABLE_ALL_TESTS)
|
||||||
message(FATAL_ERROR "Compiler doesn't support -fompss-2 flag, cannot enable NODES RT tests")
|
message(FATAL_ERROR "Compiler doesn't support -fompss-2 flag, cannot enable NODES RT tests")
|
||||||
@ -11,7 +13,6 @@ if(NOT OMPSS2_COMPILER_FOUND)
|
|||||||
return()
|
return()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
find_package(Nodes)
|
|
||||||
if(NOT NODES_FOUND)
|
if(NOT NODES_FOUND)
|
||||||
if(ENABLE_ALL_TESTS)
|
if(ENABLE_ALL_TESTS)
|
||||||
message(FATAL_ERROR "NODES not found, cannot enable NODES RT tests")
|
message(FATAL_ERROR "NODES not found, cannot enable NODES RT tests")
|
||||||
|
Loading…
Reference in New Issue
Block a user