16 lines
419 B
Plaintext
16 lines
419 B
Plaintext
cmake_minimum_required(VERSION 3.7.2)
|
|
|
|
project(pybind11-download NONE)
|
|
|
|
include(ExternalProject)
|
|
ExternalProject_Add(pybind11
|
|
GIT_REPOSITORY https://github.com/pybind/pybind11.git
|
|
GIT_TAG v2.10.4
|
|
SOURCE_DIR "${CMAKE_BINARY_DIR}/pybind11-src"
|
|
BINARY_DIR "${CMAKE_BINARY_DIR}/pybind11-build"
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
TEST_COMMAND ""
|
|
)
|