Skip to content

Commit

Permalink
cmake make available
Browse files Browse the repository at this point in the history
  • Loading branch information
lobis committed Oct 1, 2024
1 parent 47efeab commit 72193d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ FetchContent_Declare(
)
FetchContent_GetProperties(awkward-headers)
if (NOT awkward-headers_POPULATED)
FetchContent_Populate(awkward-headers)
FetchContent_MakeAvailable(awkward-headers)
add_subdirectory(${awkward-headers_SOURCE_DIR}
${awkward-headers_BINARY_DIR} EXCLUDE_FROM_ALL)
endif ()
Expand All @@ -49,7 +49,7 @@ FetchContent_Declare(
DOWNLOAD_EXTRACT_TIMESTAMP 1)
FetchContent_GetProperties(pybind11)
if (NOT pybind11_POPULATED)
FetchContent_Populate(pybind11)
FetchContent_MakeAvailable(pybind11)
add_subdirectory(${pybind11_SOURCE_DIR} ${pybind11_BINARY_DIR}
EXCLUDE_FROM_ALL)
endif ()
Expand Down

0 comments on commit 72193d0

Please sign in to comment.