mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-21 03:48:08 -05:00
Add buildbot builder for VB.net
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
@@ -932,13 +932,17 @@ c['builders'].append(
|
||||
#Common boring 64-bit modules for windows, linux and OSX
|
||||
### OSX
|
||||
for platform in ['OSX', 'linux', 'windows']:
|
||||
for wrapper in ['Java','Csharp','Octave','PHP','64BIT_SHARED_LIBRARY','STATIC_LIBRARY','MATHEMATICA']:
|
||||
for wrapper in ['Java','Csharp','Octave','PHP','64BIT_SHARED_LIBRARY','STATIC_LIBRARY','MATHEMATICA','VBDOTNET']:
|
||||
if wrapper == 'PHP' and platform != 'linux': continue # only build PHP on linux
|
||||
if wrapper == 'VBDOTNET' and !platform.startswith('windows'): continue # only build VB.net on windows
|
||||
ctest_args, cmake_args, build_args = [], [], []
|
||||
if platform.startswith('windows'):
|
||||
ctest_args = ['-C', 'Release']
|
||||
if wrapper == 'Octave':
|
||||
cmake_args = ['-G', '"MinGW Makefiles"']
|
||||
elif wrapper == 'VBDOTNET':
|
||||
cmake_args = ['-G', '"Visual Studio 11 2012 Win64"']
|
||||
build_args = ['--config','Release']
|
||||
else:
|
||||
cmake_args = ['-G', '"Visual Studio 10 2010 Win64"']
|
||||
build_args = ['--config','Release']
|
||||
|
||||
Reference in New Issue
Block a user