File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,17 @@ requirements:
18
18
build :
19
19
- {{ compiler('cxx') }}
20
20
- scons
21
- - boost-cpp {{ boost }}
22
21
- python
22
+ host :
23
+ - boost {{ boost }}
24
+
23
25
24
26
test :
25
- commands : # [not win]
26
- - test -f $PREFIX/lib/libObjCryst${SHLIB_EXT} # [not win]
27
+ commands :
28
+ - test -f $PREFIX/lib/libObjCryst${SHLIB_EXT} # [not win]
29
+ - test -f $PREFIX/include/ObjCryst/version.h # [not win]
30
+ - if not exist %LIBRARY_LIB%\\libObjCryst.lib exit 1 # [win]
31
+ - if not exist %LIBRARY_INC%\\ObjCryst\\version.h exit 1 # [win]
27
32
28
33
about :
29
34
home : https://github.com/diffpy/libobjcryst/
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ if env['PLATFORM'] == 'darwin':
29
29
# Compiler specific options
30
30
if platform .system ().lower () == "windows" :
31
31
# Visual c++
32
- env .PrependUnique (CCFLAGS = ['/Ox' , '/EHsc' ])
32
+ env .PrependUnique (CCFLAGS = ['/Ox' , '/EHsc' , '/MD' ])
33
33
env .AppendUnique (CPPDEFINES = {'NDEBUG' : None })
34
34
# env.AppendUnique(LINKFLAGS='/EXPORT')
35
35
else :
You can’t perform that action at this time.
0 commit comments