summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorMarcus Müller <mmueller@gnuradio.org>2021-06-06 01:36:46 +0200
committermormj <34754695+mormj@users.noreply.github.com>2021-06-09 07:36:17 -0400
commit0705a715dea306c4d53301095f93b0f7077c4a61 (patch)
tree059d01ecf6520ddc49404151667030ca7fa76815 /cmake
parent07441c582166fb0992d6e5479fb9d2251d2bffd7 (diff)
cmake: lowercase pkg-config module requires lowercase pybind11_INCLUDE_DIR
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Modules/GrPybind.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmake/Modules/GrPybind.cmake b/cmake/Modules/GrPybind.cmake
index bc92a5af3e..d90cbf6c2e 100644
--- a/cmake/Modules/GrPybind.cmake
+++ b/cmake/Modules/GrPybind.cmake
@@ -37,7 +37,7 @@ target_include_directories(${name}_python PUBLIC
${PYTHON_NUMPY_INCLUDE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/${updir}/lib
${CMAKE_CURRENT_SOURCE_DIR}/${updir}/include
- ${PYBIND11_INCLUDE_DIR}
+ ${pybind11_INCLUDE_DIR}
)
target_link_libraries(${name}_python PUBLIC ${Boost_LIBRARIES} Python::Module gnuradio-${MODULE_NAME})
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR
@@ -154,7 +154,7 @@ target_include_directories(${name}_python PUBLIC
${PYTHON_NUMPY_INCLUDE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/${updir}/lib
${CMAKE_CURRENT_SOURCE_DIR}/${updir}/include
- ${PYBIND11_INCLUDE_DIR}
+ ${pybind11_INCLUDE_DIR}
)
target_link_libraries(${name}_python PUBLIC ${Boost_LIBRARIES} Python::Module gnuradio-${MODULE_NAME})
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR
@@ -287,7 +287,7 @@ target_include_directories(${name}_python PUBLIC
${PYTHON_NUMPY_INCLUDE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/${updir}/lib
${CMAKE_CURRENT_SOURCE_DIR}/${updir}/include
- ${PYBIND11_INCLUDE_DIR}
+ ${pybind11_INCLUDE_DIR}
)
target_link_libraries(${name}_python PUBLIC ${Boost_LIBRARIES} Python::Module gnuradio-${MODULE_NAME})
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR