我正在使用 3.9.4 编写一个 pythonpybind11模块CMake。由于方便,我希望pybind11在ExternalProject_Add我的CMakeLists.txt.
当我运行时cmake .,它不会下载pybind11源文件,并引发错误。
CMake Error at CMakeLists.txt:21 (add_subdirectory):
The source directory
/Users/me/foo/pybind11_external-prefix/src/pybind11_external
does not contain a CMakeLists.txt file.
CMake Error at CMakeLists.txt:22 (pybind11_add_module):
Unknown CMake command "pybind11_add_module".
有一个解决方法:
- 注释掉 CMakeLists.txt 中的最后 3 行
- 跑
cmake . - 运行
make(然后,它会下载pybind11源文件) - 恢复 CMakeLists.txt 中的最后 3 行
- 跑
cmake . - 跑
make
但是,这并不聪明......有没有办法下载pybind11使用ExternalProject_Add而不注释掉这些行并恢复它们(并且没有运行cmake和make两次)?
/Users/me/foo/CMakeLists.txt
cmake_minimum_required(VERSION 3.8)
project(foo)
set(CMAKE_CXX_STANDARD 14)
include(ExternalProject)
ExternalProject_Add(
pybind11_external
GIT_REPOSITORY https://github.com/pybind/pybind11.git
GIT_TAG v2.2.1
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
)
set(PYBIND11_CPP_STANDARD -std=c++14)
ExternalProject_Get_Property(pybind11_external source_dir)
include_directories(${source_dir}/include)
add_subdirectory(${source_dir}) # comment out, then restore this line
pybind11_add_module(foo SHARED foo.cpp) # comment out, then restore this line
add_dependencies(foo pybind11_external) # comment out, then restore this line
/Users/me/foo/foo.hpp
#ifndef FOO_LIBRARY_H
#define FOO_LIBRARY_H
#include<pybind11/pybind11.h>
int add(int i, int j);
#endif
/Users/me/foo/foo.cpp
#include "foo.hpp"
int add(int i, int j) {
return i + j;
}
PYBIND11_MODULE(example, m) {
m.doc() = "pybind11 example plugin";
m.def("add", &add, "A function which adds two numbers");
}