Rod Persky
Rod Persky
Hi @JAExposito, If you're familiar with cmake the following should work ``` cmake_minimum_required(VERSION 2.8) project("coolprop") include_directories("${CMAKE_CURRENT_SOURCE_DIR}/CoolProp") FILE(GLOB coolprop_files "${CMAKE_CURRENT_SOURCE_DIR}/CoolProp/*.cpp") add_library(coolprop STATIC ${coolprop_files}) ``` This needs to be placed in a...
I've added a CMake example project in Web/examples/CMAKE. If you grab the CMake program you can have it automatically setup a workspace for MSVC. I've tested this on linux, and...
BTW: the code is here : https://github.com/Rod-Persky/coolprop/tree/example_cmake/Web/examples/CMAKE I'll test on windows when I get on campus
Yes, I was in a rush this morning when I got the ping reminding me to get it done. Sorry @JAExposito for being a bit slow, I'll add a readme...
So I was thinking about this! The idea was: - When the project builds, send a list of test results somewhere such that, - When it comes to the next...
If we get it to stop failing the specific tests that it does, then that png should be pretty good - otherwise i'll be deceiving that the program is completely...
I have documented things in the past with varying success, one of the better ones was: https://pyiges.readthedocs.org/en/latest/examples/benchmarks/144_0/144-000_examples.html#module-examples.benchmarks.144_000_example_1 Which contains an assortment of links, but it's not nearly as complicated as...
With a few minor modifications the docs are automatically building, they can be found at: http://coolprop.readthedocs.org/en/latest Next step is to make the layout similar to how it was - I...
I got it working removing the import coolprop line, however the cost is that it doesn't get the code. So I'm working to get that fixed though getting setup.py to...
Fixed, RTFD builds and installs coolprop - the modules autodoc now turns up. Next is to fix the theme. I had to copy wrappers/Python/setup.py to / for it to work