mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-23 04:47:57 -05:00
Merge branch 'master' of https://github.com/coolprop/coolprop
This commit is contained in:
@@ -20,7 +20,8 @@ Download a precompiled shared library appropriate to the computer you are using
|
||||
|
||||
NB: For Linux users, the file libCoolProp.so must be renamed into CoolProp.so and copied into Julia's library folder (e.g. /usr/lib/x86_64-linux-gnu/julia/)
|
||||
|
||||
Download the module ``CoolProp.jl`` from :sfdownloads:`sourceforge <Julia>` or the development version from :sfnightly:`the nightly snapshots <Julia>` and place in the same folder as the shared library
|
||||
Download the module ``CoolProp.jl`` from :sfdownloads:`sourceforge <Julia>` or the development version from :sfnightly:`the nightly snapshots <Julia>` and place in the same folder as the shared library.
|
||||
The wrapper should be valid for Julia 0.4 and above. For Julia 0.3 and lower, use the one in the 0.3 folder.
|
||||
|
||||
Usage
|
||||
-----
|
||||
|
||||
@@ -630,10 +630,9 @@ def julia_builder(gitMode = 'incremental'):
|
||||
factory.addStep(RemoveDirectory(dir="build/install_root/Julia", haltOnFailure = True))
|
||||
factory.addStep(MakeDirectory(dir='build/install_root/Julia', haltOnFailure = True))
|
||||
factory.addStep(MakeDirectory(dir='build/install_root/Julia/0.3', haltOnFailure = True))
|
||||
factory.addStep(MakeDirectory(dir='build/install_root/Julia/0.4', haltOnFailure = True))
|
||||
# Copy other files
|
||||
factory.addStep(ShellCommand(command=["cp", "wrappers/Julia/0.3/CoolProp.jl", "install_root/Julia/0.3"], workdir = 'build', haltOnFailure = True))
|
||||
factory.addStep(ShellCommand(command=["cp", "wrappers/Julia/0.4/CoolProp.jl", "install_root/Julia/0.4"], workdir = 'build', haltOnFailure = True))
|
||||
factory.addStep(ShellCommand(command=["cp", "wrappers/Julia/CoolProp.jl", "install_root/Julia/"], workdir = 'build', haltOnFailure = True))
|
||||
# Upload the files - TODO: Is this the correct directory?
|
||||
factory.addStep(DirectoryUpload(slavesrc="install_root",masterdest=masterdestLocation,url="binaries",compress="bz2"))
|
||||
return factory
|
||||
|
||||
Reference in New Issue
Block a user