cmake: fix misleading indentation
This commit is contained in:
parent
2ce5bdc0bc
commit
06da32c728
1 changed files with 5 additions and 5 deletions
|
@ -35,9 +35,9 @@ if (MNODE_BUILD_TESTS)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include(FetchContent)
|
include(FetchContent)
|
||||||
FetchContent_Declare(pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11 GIT_TAG v2.13.6)
|
FetchContent_Declare(pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11 GIT_TAG v2.13.6)
|
||||||
FetchContent_GetProperties(pybind11)
|
FetchContent_GetProperties(pybind11)
|
||||||
if(NOT pybind11_POPULATED)
|
if(NOT pybind11_POPULATED)
|
||||||
FetchContent_Populate(pybind11)
|
FetchContent_Populate(pybind11)
|
||||||
add_subdirectory(${pybind11_SOURCE_DIR} ${pybind11_BINARY_DIR})
|
add_subdirectory(${pybind11_SOURCE_DIR} ${pybind11_BINARY_DIR})
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue