Skip to content

Commit ee14435

Browse files
committed
reorganized submodules
1 parent a605e71 commit ee14435

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "pybind11"]
2-
path = pybind11
2+
path = lib/pybind11
33
url = https://github.com/pybind/pybind11.git
44
[submodule "catch"]
5-
path = catch
5+
path = lib/catch
66
url = https://github.com/philsquared/Catch.git

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ project(python_cpp_example)
44
SET(SOURCE_DIR "python_cpp_example")
55
SET(SOURCES "${SOURCE_DIR}/main.cpp")
66

7-
add_subdirectory(pybind11)
7+
add_subdirectory(lib/pybind11)
88
pybind11_add_module(python_cpp_example ${SOURCES} "${SOURCE_DIR}/bindings.cpp")

catch renamed to lib/catch

Submodule catch updated from 0000000 to d271683

pybind11 renamed to lib/pybind11

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ def build_extension(self, ext):
5959
setup(
6060
name='python_cpp_example',
6161
version='0.1',
62-
author='',
63-
author_email='',
64-
description='A test project using pybind11 and CMake',
62+
author='Benjamin Jack',
63+
author_email='benjamin.r.jack@gmail.com',
64+
description='A hybrid Python/C++ test project',
6565
long_description='',
6666
ext_modules=[CMakeExtension('python_cpp_example')],
6767
cmdclass=dict(build_ext=CMakeBuild),

0 commit comments

Comments
 (0)