File tree 2 files changed +8
-0
lines changed 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 70
70
run : |
71
71
pixi run -e ${{ matrix.environment }} ctest --test-dir build --output-on-failure
72
72
73
+ - name : Install nanoeigenpy [MacOS/Linux/Windows]
74
+ run : |
75
+ pixi run -e ${{ matrix.environment }} cmake --build build --target install
76
+
73
77
check :
74
78
if : always()
75
79
name : check-macos-linux-windows-pixi
Original file line number Diff line number Diff line change @@ -101,6 +101,10 @@ endif(APPLE)
101
101
ADD_PROJECT_DEPENDENCY(Eigen3 REQUIRED PKG_CONFIG_REQUIRES "eigen3 >= 3.3.1" )
102
102
103
103
find_package (Python REQUIRED COMPONENTS Interpreter Development)
104
+ # On Windows Python_SITELIB contains \ that can create installation issues
105
+ if (WIN32 )
106
+ string (REPLACE "\\ " "/" Python_SITELIB "${Python_SITELIB} " )
107
+ endif ()
104
108
105
109
# Detect the installed nanobind package and import it into CMake
106
110
execute_process (
You can’t perform that action at this time.
0 commit comments