Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: xtensor-stack/xtensor
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 356bdc42e8c1bfb16d5a99d8a131386af695d133
Choose a base ref
..
head repository: xtensor-stack/xtensor
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d15637d3ea7a365100bad59b2be57b37e4ceadd9
Choose a head ref
Showing with 4 additions and 1 deletion.
  1. +1 −1 .appveyor.yml
  2. +3 −0 CMakeLists.txt
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ install:
- conda update -q conda
- conda info -a
- conda install gtest cmake -c conda-forge
- cmake -G "NMake Makefiles" -D CMAKE_INSTALL_PREFIX=%MINICONDA%\\LIBRARY -D CMAKE_BUILD_TYPE=Release .
- cmake -G "NMake Makefiles" -D CMAKE_INSTALL_PREFIX=%MINICONDA%\\LIBRARY .
- nmake test_xtensor
- cd test

3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -29,6 +29,8 @@ message(STATUS "xtensor v${${PROJECT_NAME}_VERSION}")
# Build
# =====

OPTION(BUILD_TESTS "xtensor test suite" OFF)

set(XTENSOR_HEADERS
${XTENSOR_INCLUDE_DIR}/xtensor/xarray.hpp
${XTENSOR_INCLUDE_DIR}/xtensor/xassign.hpp
@@ -38,6 +40,7 @@ set(XTENSOR_HEADERS
${XTENSOR_INCLUDE_DIR}/xtensor/xexception.hpp
${XTENSOR_INCLUDE_DIR}/xtensor/xexpression.hpp
${XTENSOR_INCLUDE_DIR}/xtensor/xfunction.hpp
${XTENSOR_INCLUDE_DIR}/xtensor/xgenerator.hpp
${XTENSOR_INCLUDE_DIR}/xtensor/xio.hpp
${XTENSOR_INCLUDE_DIR}/xtensor/xiterator.hpp
${XTENSOR_INCLUDE_DIR}/xtensor/xmath.hpp