Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / librealsense / py_pybind11_no_external_download.patch
blob2b48edb62e37b7bd0cf39bb13dfd03d5beb1fdb5
1 From 01e51b9c90ba51b2d0ca797dde676812cf3db415 Mon Sep 17 00:00:00 2001
2 From: "Robert T. McGibbon" <rmcgibbo@gmail.com>
3 Date: Mon, 10 May 2021 17:26:04 -0400
4 Subject: [PATCH 1/1] V1
6 ---
7 wrappers/python/CMakeLists.txt | 15 +--------------
8 1 file changed, 1 insertion(+), 14 deletions(-)
10 diff --git a/wrappers/python/CMakeLists.txt b/wrappers/python/CMakeLists.txt
11 index aa83e4c77..4ec92ccfa 100644
12 --- a/wrappers/python/CMakeLists.txt
13 +++ b/wrappers/python/CMakeLists.txt
14 @@ -8,21 +8,8 @@ if (NOT BUILD_PYTHON_BINDINGS)
15 endif()
17 set(DEPENDENCIES realsense2)
18 -# In order for the external project clone to occur during cmake configure step(rather than during compilation, as would normally happen),
19 -# we copy the external project declaration to the build folder and then execute it
20 -configure_file(${CMAKE_SOURCE_DIR}/third-party/pybind11/CMakeLists.txt ${CMAKE_BINARY_DIR}/external-projects/pybind11/CMakeLists.txt)
21 -execute_process(COMMAND "${CMAKE_COMMAND}" -G "${CMAKE_GENERATOR}" .
22 - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/external-projects/pybind11"
24 -execute_process(COMMAND "${CMAKE_COMMAND}" --build .
25 - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/external-projects/pybind11"
28 -# Add pybind11 makefile
29 -add_subdirectory("${CMAKE_BINARY_DIR}/third-party/pybind11"
30 - "${CMAKE_BINARY_DIR}/third-party/pybind11"
31 - EXCLUDE_FROM_ALL
33 +find_package(pybind11 REQUIRED)
35 set(PYBIND11_CPP_STANDARD -std=c++11)
36 # Force Pybind11 not to share pyrealsense2 resources with other pybind modules.
37 --
38 2.29.3