Updated PyPI build command in bb

This commit is contained in:
coolprop
2014-10-02 01:56:47 -07:00
parent 573f1f8707
commit 6847d3f834

View File

@@ -162,7 +162,7 @@ def python_source_slave(key, platform, conda_env, cmake_args = [], cmake_env = {
factory.addStep(RemoveDirectory(dir="build/install_root", haltOnFailure = True))
factory.addStep(MakeDirectory(dir=working_folder, haltOnFailure = True))
factory.addStep(ShellCommand(command = ' '.join(['source',"activate",conda_env,"&&","cmake", "..", "-DCOOLPROP_PYTHON_PYPI=ON","&&","cmake","--build","."]+cmake_args),
factory.addStep(ShellCommand(command = ' '.join(['source',"activate",conda_env,"&&","cmake", "..", "-DCOOLPROP_PYTHON_PYPI=ON","&&","cmake","--build",".","--target","CoolProp"]+cmake_args),
env = cmake_env,
workdir= working_folder,
haltOnFailure = True))