Skip to content

Commit a1bfb03

Browse files
committed
Remove more deps on windows
1 parent 794b52e commit a1bfb03

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

recipe/bld.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ cmake -T "v142,host=x64" -G "Visual Studio 16 2019" ^
1919
-D WRAP_PYTHON:BOOL=ON ^
2020
-D SimpleITK_USE_SYSTEM_SWIG:BOOL=ON ^
2121
-D SimpleITK_PYTHON_USE_VIRTUALENV:BOOL=OFF ^
22-
-D ITK_USE_SYSTEM_JPEG:BOOL=ON ^
23-
-D ITK_USE_SYSTEM_PNG:BOOL=ON ^
22+
-D ITK_USE_SYSTEM_JPEG:BOOL=OFF ^
23+
-D ITK_USE_SYSTEM_PNG:BOOL=OFF ^
2424
-D ITK_USE_SYSTEM_TIFF:BOOL=OFF ^
25-
-D ITK_USE_SYSTEM_ZLIB:BOOL=OFF ^
25+
-D ITK_USE_SYSTEM_ZLIB:BOOL=ON ^
2626
-D Module_ITKTBB:BOOL=OFF ^
2727
-D "CMAKE_FIND_ROOT_PATH:PATH=%PREFIX%" ^
2828
-D "CMAKE_FIND_ROOT_PATH_MODE_INCLUDE:STRING=ONLY" ^

recipe/meta.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@ requirements:
2525
host:
2626
- python
2727
- setuptools
28-
- libtiff
29-
- libpng
30-
- jpeg
28+
- libtiff # [not win]
29+
- libpng # [not win]
30+
- jpeg # [not win]
3131
- zlib
32-
- tbb-devel
32+
- tbb-devel # [not win]
3333

3434
run:
3535
- vs2015_runtime # [win]
3636
- python
37-
- {{ pin_compatible('libtiff', max_pin='x.x') }}
38-
- {{ pin_compatible('libpng', max_pin='x.x') }}
39-
- {{ pin_compatible('jpeg', max_pin='x') }}
37+
- {{ pin_compatible('libtiff', max_pin='x.x') }} # [not win]
38+
- {{ pin_compatible('libpng', max_pin='x.x') }} # [not win]
39+
- {{ pin_compatible('jpeg', max_pin='x') }} # [not win]
4040
- {{ pin_compatible('zlib', max_pin='x.x') }}
41-
- tbb
41+
- tbb # [not win]
4242

4343
test:
4444
imports:

0 commit comments

Comments
 (0)