Alan Garny
Alan Garny
As far as I can tell, libCellML relies only on two third-party libraries: `libxml2` and `zlib`. Would it be worth providing pre-built binaries for them? This is what is done...
If you build a shared (release) version of libCellML and then try to use it in a small program, you will be told that `zlib.dll` is needed. I wouldn't expect...
If you set `BUILD_SHARED` to `OFF` then to build libCellML on Ubuntu 20.04 LTS will result in the following output: ``` $ ninja [134/156] Linking CXX shared library tests/libtest_utils.so FAILED:...
Right now, if we want to build the JavaScript bindings, we must do it "manually" (following the [instructions](https://github.com/cellml/libcellml/blob/526b92377918b6d32110fec81291de9a495337d1/docs/dev_building_web_assembly.rst)), which is not ideal. So, it would be good to have a...
I opened `CMakeLists.txt` in Qt Creator and then built libCellML using the debug profile. Here is the compile output I got: ``` 06:14:27: Running steps for project libCellML... 06:14:27: Persisting...
Say that you want to configure libCellML with `COMPILER_CACHE` set to `ON`, but that you don't have any compiler cache tool. If so then you will get a warning: https://github.com/cellml/libcellml/blob/23ce671429f63052be0394e6b4c66dd7c4c52d97/CMakeLists.txt#L54...
As for coverage and memcheck, LLVM coverage should require unit tests to be enabled.
This issue aims at cleaning up the code, refactoring it whenever needed, etc. Things to be done (feel free to add to the list!): - [ ] As much as...
THINKING IN PROGRESS... --- ``` FOREACH component DO FOREACH equation DO COUNT number_of_variables IN equation IF number_of_variables EQUALS 0 THEN GENERATE ERROR MESSAGE ELSE IF number_of_variables EQUALS 1 THEN IF...
I am trying to build libCellML on a "vanilla" version of Windows and, after installing libXml2, CMake allows me to fully configure libCellML (even though I don't have `zlib` on...