2024-09-23 16:01:31 +08:00
|
|
|
# Copyright (c) 2023, AgiBot Inc.
|
|
|
|
# All rights reserved.
|
|
|
|
|
|
|
|
include(FetchContent)
|
|
|
|
|
|
|
|
message(STATUS "get stdexec ...")
|
|
|
|
|
|
|
|
set(stdexec_DOWNLOAD_URL
|
|
|
|
"https://github.com/NVIDIA/stdexec/archive/nvhpc-23.09.rc4.tar.gz"
|
|
|
|
CACHE STRING "")
|
|
|
|
|
|
|
|
if(stdexec_LOCAL_SOURCE)
|
|
|
|
FetchContent_Declare(
|
|
|
|
stdexec
|
|
|
|
SOURCE_DIR ${stdexec_LOCAL_SOURCE}
|
|
|
|
OVERRIDE_FIND_PACKAGE)
|
|
|
|
else()
|
|
|
|
FetchContent_Declare(
|
|
|
|
stdexec
|
|
|
|
URL ${stdexec_DOWNLOAD_URL}
|
|
|
|
DOWNLOAD_EXTRACT_TIMESTAMP TRUE
|
|
|
|
OVERRIDE_FIND_PACKAGE)
|
|
|
|
endif()
|
|
|
|
|
2024-11-07 21:17:34 +08:00
|
|
|
# Wrap it in a function to restrict the scope of the variables
|
|
|
|
function(get_stdexec)
|
|
|
|
FetchContent_GetProperties(stdexec)
|
|
|
|
if(NOT stdexec_POPULATED)
|
|
|
|
set(STDEXEC_ENABLE_IO_URING_TESTS OFF)
|
|
|
|
set(STDEXEC_BUILD_EXAMPLES OFF)
|
|
|
|
set(STDEXEC_BUILD_TESTS OFF)
|
|
|
|
|
|
|
|
FetchContent_MakeAvailable(stdexec)
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
get_stdexec()
|
2024-09-23 16:01:31 +08:00
|
|
|
|
|
|
|
# import targets:
|
|
|
|
# STDEXEC::stdexec
|
|
|
|
# STDEXEC::nvexec
|
|
|
|
# STDEXEC::tbbexec
|