Skip to content

Commit 6832699

Browse files
committed
Reverted back to the correct version of xsimd, fixed extension for cpp file
1 parent 80fa5bd commit 6832699

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,6 @@
3232
*.app
3333
/.vs
3434
/out/build
35+
/build
36+
/.vscode
3537
/CMakeSettings.json

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ message(STATUS "xtensor-signal v${${PROJECT_NAME}_VERSION}")
3131
# Dependencies
3232
# ============
3333

34-
set(xsimd_REQUIRED_VERSION 8.1.0)
34+
set(xsimd_REQUIRED_VERSION 9.0.1)
3535
if(TARGET xsimd)
3636
set(xsimd_VERSION ${XSIMD_VERSION_MAJOR}.${XSIMD_VERSION_MINOR}.${XSIMD_VERSION_PATCH})
3737
# Note: This is not SEMVER compatible comparison
@@ -61,7 +61,7 @@ else()
6161
endif()
6262

6363
find_package(xtensor-blas)
64-
64+
6565
# Build
6666
# =====
6767

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ include_directories(${GTEST_INCLUDE_DIRS})
5050
set(XTENSOR_SIGNAL_TESTS
5151
main.cpp
5252
test_config.cpp
53-
savitzky_golay_test
53+
savitzky_golay_test.cpp
5454
)
5555

5656
add_executable(test_xtensor_signal ${XTENSOR_SIGNAL_TESTS} ${XTENSOR_SIGNAL_HEADERS})

0 commit comments

Comments
 (0)