File tree Expand file tree Collapse file tree 3 files changed +15
-5
lines changed
Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,18 @@ set(${PROJECT_NAME}_VERSION
2828 ${XTENSOR_PYTHON_VERSION_MAJOR} .${XTENSOR_PYTHON_VERSION_MINOR} .${XTENSOR_PYTHON_VERSION_PATCH} )
2929message (STATUS "xtensor-python v${${PROJECT_NAME} _VERSION}" )
3030
31+ # Dependencies
32+ # ============
33+
34+ find_package (xtl REQUIRED)
35+ message (STATUS "Found xtl: ${xtl_INCLUDE_DIRS} /xtl" )
36+ find_package (xtensor REQUIRED)
37+ message (STATUS "Found xtensor: ${xtensor_INCLUDE_DIRS} /xtensor" )
38+ find_package (pybind11 REQUIRED)
39+ message (STATUS "Found pybind11: ${pybind11_INCLUDE_DIRS} /pybind11" )
40+ find_package (NumPy REQUIRED)
41+ message (STATUS "Found numpy: ${NUMPY_INCLUDE_DIRS} " )
42+
3143# Build
3244# =====
3345
@@ -50,12 +62,9 @@ endif()
5062
5163if (BUILD_TESTS)
5264 include_directories (${XTENSOR_PYTHON_INCLUDE_DIR} )
53- find_package (xtensor REQUIRED )
65+ include_directories ( ${xtl_INCLUDE_DIRS} )
5466 include_directories (${xtensor_INCLUDE_DIRS} )
55- find_package (NumPy REQUIRED)
5667 include_directories (${NUMPY_INCLUDE_DIRS} )
57-
58- find_package (pybind11 REQUIRED)
5968 include_directories (${pybind11_INCLUDE_DIRS} )
6069
6170 if (MSVC )
Original file line number Diff line number Diff line change @@ -190,6 +190,7 @@ from the `docs` subdirectory.
190190| ` xtensor-python ` | ` xtensor ` | ` pybind11 ` |
191191| -------------------| ------------| -------------|
192192| master | ^0.12.0 | ^2.1.0 |
193+ | 0.14.x | ^0.12.0 | ^2.1.0 |
193194| 0.13.x | ^0.11.0 | ^2.1.0 |
194195| 0.12.x | ^0.10.2 | 2.1.\* |
195196| 0.11.x | ^0.10.0 | 2.1.\* |
Original file line number Diff line number Diff line change 1010#define XTENSOR_PYTHON_CONFIG_HPP
1111
1212#define XTENSOR_PYTHON_VERSION_MAJOR 0
13- #define XTENSOR_PYTHON_VERSION_MINOR 13
13+ #define XTENSOR_PYTHON_VERSION_MINOR 14
1414#define XTENSOR_PYTHON_VERSION_PATCH 0
1515
1616#endif
You can’t perform that action at this time.
0 commit comments