Changes

Summary

  1. Add CMake code to package and download pre-built libraries (#1106). (details)
  2. Exclude `./external` directories from source code management (#1106). (details)
  3. Use CMake's `ExternalProject` to build zlib and then package library (details)
  4. Tidy code. (details)
  5. Pre-build zlib for Linux and Windows (#1106). (details)
  6. Some minor cleaning up. (details)
  7. Various cleaning up (#1106). (details)
  8. Updated our SHA-1 values (#1106). (details)
  9. Some minor cleaning up. (details)
  10. Make sure that a package is retrieved in the right directory (#1106). (details)
  11. Some minor cleaning up. (details)
  12. Some minor cleaning up. (details)
  13. Replaced 'DEPENDS' with 'DEPENDS_ON' in ADD_PLUGIN(). (details)
  14. Some minor cleaning up. (details)
  15. Addressed an issue with Ninja with regards to copying OpenCOR.com. (details)
  16. Some minor cleaning up. (details)
  17. ADD_PLUGIN(): make sure that various commands are either executed (details)
  18. Some minor cleaning up. (details)
  19. Some minor cleaning up. (details)
  20. Some minor cleaning up. (details)
  21. Some minor cleaning up. (details)
  22. Cleaned up the CREATE_PACKAGE_FILE() macro (#1106). (details)
  23. Some minor cleaning up. (details)
  24. Cleaned up the CREATE_PACKAGE_FILE() macro (#1106). (details)
  25. Renamed CHECK_FILES() with CHECK_SHA1_FILES() (#1106). (details)
  26. Use CHECK_SHA1_FILES_OK rather than CHECK_SHA1_FILES_FAILED (#1106) (details)
  27. Cleaned up CHECK_SHA1_FILES() (#1106). (details)
  28. Reverted our use of CHECK_SHA1_FILES() back in favour of CHECK_FILES(). (details)
  29. Some minor cleaning up. (details)
  30. Some minor cleaning up. (details)
  31. Some minor cleaning up. (details)
  32. Some minor cleaning up. (details)
  33. Cleaned up the RETRIEVE_PACKAGE_FILE_FROM() and (details)
  34. Make sure that we have at least one file to check when calling the (details)
  35. Make sure that we report the case where a file/package couldn't be (details)
  36. Output to the console the RETRIEVE_PACKAGE_FILE() call that needs to be (details)
  37. Make sure that we properly generate the information about the call to (details)
  38. Generate a package file that can be uploaded on GitHub (#1106). (details)
  39. Have a package file generated in our main build directory, so that it's (details)
  40. Getting ready to generate new zlib package binaries (#1106). (details)
  41. Retrieve our package files directly from GitHub (#1106). (details)
  42. Slight updates to our downloads pages (#1106). (details)
Commit 21c0b60e93d261411f7f90a312e2cd0ffc550bdb by dave
Add CMake code to package and download pre-built libraries (#1106).
The file was modified cmake/common.cmake (diff)
Commit d3025d609dc19801bcc380cc89cd0103d016b74b by dave
Exclude `./external` directories from source code management (#1106).
The file was modified .gitignore (diff)
Commit 8304134d4bf2445ec8c68104054831f1b815a616 by dave
Use CMake's `ExternalProject` to build zlib and then package library
using new mechanism (#1106).
The file was removedsrc/plugins/thirdParty/zlib/src/inftrees.c
The file was removedsrc/plugins/thirdParty/zlib/src/inftrees.h
The file was modified src/plugins/thirdParty/zlib/CMakeLists.txt (diff)
The file was removedsrc/plugins/thirdParty/zlib/src/gzguts.h
The file was removedsrc/plugins/thirdParty/zlib/src/crc32.h
The file was removedsrc/plugins/thirdParty/zlib/src/zlib.h
The file was modified src/plugins/support/PMRSupport/CMakeLists.txt (diff)
The file was removedsrc/plugins/thirdParty/zlib/src/trees.c
The file was removedsrc/plugins/thirdParty/zlib/src/infback.c
The file was removedsrc/plugins/thirdParty/zlib/src/gzread.c
The file was removedsrc/plugins/thirdParty/zlib/src/uncompr.c
The file was removedsrc/plugins/thirdParty/zlib/src/deflate.h
The file was removedsrc/plugins/thirdParty/zlib/src/inflate.h
The file was removedsrc/plugins/thirdParty/zlib/src/crc32.c
The file was removedsrc/plugins/thirdParty/zlib/src/zutil.c
The file was addedsrc/plugins/thirdParty/zlib/.gitignore
The file was removedsrc/plugins/thirdParty/zlib/src/gzlib.c
The file was removedsrc/plugins/thirdParty/zlib/src/trees.h
The file was removedsrc/plugins/thirdParty/zlib/src/adler32.c
The file was removedsrc/plugins/thirdParty/zlib/src/compress.c
The file was modified src/plugins/support/ZIPSupport/CMakeLists.txt (diff)
The file was removedsrc/plugins/thirdParty/zlib/src/deflate.c
The file was removedsrc/plugins/thirdParty/zlib/src/inffast.c
The file was removedsrc/plugins/thirdParty/zlib/src/zutil.h
The file was removedsrc/plugins/thirdParty/zlib/src/inflate.c
The file was removedsrc/plugins/thirdParty/zlib/src/gzclose.c
The file was removedsrc/plugins/thirdParty/zlib/src/inffixed.h
The file was removedsrc/plugins/thirdParty/zlib/src/inffast.h
The file was removedsrc/plugins/thirdParty/zlib/src/gzwrite.c
The file was removedsrc/plugins/thirdParty/zlib/src/zconf.h
The file was modified src/plugins/thirdParty/zlib/CMakeLists.txt (diff)
Commit a71a54a764969516c6cf6db8844e1e37148a9585 by dave
Pre-build zlib for Linux and Windows (#1106).
The file was modified src/plugins/thirdParty/zlib/CMakeLists.txt (diff)
Commit ae239a843933c0b0ced7a18e020e965457c16dda by Alan Garny
Some minor cleaning up.
The file was modified src/plugins/thirdParty/zlib/CMakeLists.txt (diff)
The file was modified cmake/common.cmake (diff)
Commit 32f8b90525d922e4d76ed43789e6d479f4b4f3e0 by Alan Garny
Various cleaning up (#1106).
- Simplified our versioning mechanism for zlib;
- Replaced 'external' with 'ext’;
- Moved the 'zlib' contents to 'ext/proj’;
- Changed the order of some parameters in CREATE_PACKAGE_FILE(),
RETRIEVE_PACKAGE_FILE() and RETRIEVE_PACKAGE_FILE_FROM();
- Replaced ‘CHECKED_FILES’ with ‘SHA1_FILES’;
- Use our forked version of zlib;
- Updated the SHA-1 values for zlib, now that the zlib package is hosted
on opencor.ws;
- Various minor cleaning ups.
The file was modified src/plugins/thirdParty/zlib/CMakeLists.txt (diff)
The file was modified cmake/common.cmake (diff)
The file was removedsrc/plugins/thirdParty/zlib/.gitignore
The file was modified .gitignore (diff)
Commit fa3215a9a932e9fc6637e4a6a1ab42742cb67d7c by Alan Garny
Updated our SHA-1 values (#1106).
The file was modified src/plugins/thirdParty/zlib/CMakeLists.txt (diff)
Commit 587c89ca934bb04a9c1872c98f1a6a11f02a6e84 by Alan Garny
Some minor cleaning up.
The file was modified cmake/common.cmake (diff)
Commit e6ef6a1f1dd56481e93e1566278a2d818d92cb1a by Alan Garny
Make sure that a package is retrieved in the right directory (#1106).
The file was modified cmake/common.cmake (diff)
The file was modified src/plugins/thirdParty/zlib/CMakeLists.txt (diff)
Commit 5cd7d2101742ff4310db2391a15fb381ebe9bdb6 by Alan Garny
Some minor cleaning up.
The file was modified cmake/common.cmake (diff)
Commit 9a5f037ffca028b3e5c6a0c0a66744c1946582b9 by Alan Garny
Some minor cleaning up.
The file was modified CMakeLists.txt (diff)
The file was modified src/plugins/thirdParty/zlib/CMakeLists.txt (diff)
Commit 5af5dcfa1fa64f5189b4b4aab54183f236885d29 by Alan Garny
Replaced 'DEPENDS' with 'DEPENDS_ON' in ADD_PLUGIN().
The file was modified src/plugins/thirdParty/zlib/CMakeLists.txt (diff)
The file was modified cmake/common.cmake (diff)
Commit 5a26c1825f11b1c650ea959f77876f92049eba34 by Alan Garny
Some minor cleaning up.
The file was modified cmake/common.cmake (diff)
The file was modified src/plugins/thirdParty/zlib/CMakeLists.txt (diff)
Commit c8a44120b974849d6dcc4dffdc14915a2a49edce by Alan Garny
Addressed an issue with Ninja with regards to copying OpenCOR.com.
The file was modified CMakeLists.txt (diff)
Commit eee16ac12f3cf60be526743388cba251049cfffa by Alan Garny
Some minor cleaning up.
The file was modified cmake/common.cmake (diff)
Commit c1d79c58978f2fe9892e1daa30210570e76cfb35 by Alan Garny
ADD_PLUGIN(): make sure that various commands are either executed
directly or through a custom target based on the plugin's situation
(#1106).
The file was modified cmake/common.cmake (diff)
Commit 87d2063a1f3559d4630e0f6b35f9b5602408d30f by Alan Garny
Some minor cleaning up.
The file was modified cmake/common.cmake (diff)
Commit 8f31fa8e69da807afbe2729a4b06895bf8b5c74c by Alan Garny
Some minor cleaning up.
The file was modified cmake/common.cmake (diff)
Commit d704992ee12a48a0cf29a0bc292856ccaa594682 by Alan Garny
Some minor cleaning up.
The file was modified cmake/common.cmake (diff)
Commit 4286abfe497c0a04cd37b9664dd842b244e77430 by Alan Garny
Some minor cleaning up.
The file was modified CMakeLists.txt (diff)
Commit e35deefcaf11b10a1c0a2c484c64e64f81b4ae3f by Alan Garny
Cleaned up the CREATE_PACKAGE_FILE() macro (#1106).
The file was modified cmake/common.cmake (diff)
Commit 2746bcaaf1206256e6b8e332a50898af89b3c536 by Alan Garny
Some minor cleaning up.
The file was modified cmake/common.cmake (diff)
Commit d43ee3e697e1f82039298e49c811d6d2557e4299 by Alan Garny
Cleaned up the CREATE_PACKAGE_FILE() macro (#1106).
The file was modified cmake/common.cmake (diff)
Commit 5f2d63d52130a714bd35af87ab6688de77d383b3 by Alan Garny
Renamed CHECK_FILES() with CHECK_SHA1_FILES() (#1106).
The file was modified cmake/common.cmake (diff)
Commit 63c4827c608641b993ccf635c4e45712561f8c3e by Alan Garny
Use CHECK_SHA1_FILES_OK rather than CHECK_SHA1_FILES_FAILED (#1106)
Kind of positive attitude… :)
The file was modified cmake/common.cmake (diff)
Commit bbf2d9925cca281730d48a8c1f6dcfc54d2ecc4b by Alan Garny
Cleaned up CHECK_SHA1_FILES() (#1106).
The file was modified cmake/common.cmake (diff)
Commit deaccd46e316e653c2a232440614de15cc21e9c4 by Alan Garny
Reverted our use of CHECK_SHA1_FILES() back in favour of CHECK_FILES().
Also introduced a convenience macro: CHECK_FILE() (#1106).
The file was modified cmake/common.cmake (diff)
Commit ecbb05c59a6dc08d16bc4e33ca23fd78bd4df67e by Alan Garny
Some minor cleaning up.
The file was modified CMakeLists.txt (diff)
Commit 10c1abb2647242d5a5bcf9123bfc606e73174d18 by Alan Garny
Some minor cleaning up.
The file was modified cmake/common.cmake (diff)
Commit f611d706fa6a1b54514670e8797fa27c4f50cbec by Alan Garny
Some minor cleaning up.
The file was modified CMakeLists.txt (diff)
Commit fd09d0fffdb97989a70e329d8846aefbd472b44d by Alan Garny
Some minor cleaning up.
The file was modified cmake/common.cmake (diff)
Commit 0314ea6f27f4d685e787aae21f99c986a0be66dd by Alan Garny
Cleaned up the RETRIEVE_PACKAGE_FILE_FROM() and
RETRIEVE_BINARY_FILE_FROM() macros (#1106).
The file was modified cmake/common.cmake (diff)
Commit e8341229e91efe2a20aea0613af8055028593f76 by Alan Garny
Make sure that we have at least one file to check when calling the
RETRIEVE_PACKAGE_FILE_FROM() macro (#1106).
The file was modified cmake/common.cmake (diff)
Commit bd27f6492a72c63afa2e1496112883272cf917dd by Alan Garny
Make sure that we report the case where a file/package couldn't be
uncompressed (#1106).
The file was modified cmake/common.cmake (diff)
Commit 7a51b560259c32de6bec814fd91ff4aa82d436cd by Alan Garny
Output to the console the RETRIEVE_PACKAGE_FILE() call that needs to be
made (#1106).
The file was modified cmake/common.cmake (diff)
Commit fd3e70c5275108903eae5f35f0287c2932976653 by Alan Garny
Make sure that we properly generate the information about the call to
the RETRIEVE_PACKAGE_FILE() macro (#1106).
The file was modified cmake/common.cmake (diff)
Commit 82d3595eca449128c1b4267e045233a3c5a3f8ef by Alan Garny
Generate a package file that can be uploaded on GitHub (#1106).
The file was modified cmake/common.cmake (diff)
Commit 742593f98c291765698adcc951e7c2e936ef9686 by Alan Garny
Have a package file generated in our main build directory, so that it's
easier to find (#1106).
The file was modified cmake/common.cmake (diff)
Commit d562dcfd8fe4cf543b6cefea85c797d018eea9d4 by Alan Garny
Getting ready to generate new zlib package binaries (#1106).
The file was modified CMakeLists.txt (diff)
Commit 5a771ffcecd84970f1effda2a956bf907ae1c6a7 by Alan Garny
Retrieve our package files directly from GitHub (#1106).
The file was modified CMakeLists.txt (diff)
The file was modified src/plugins/thirdParty/zlib/CMakeLists.txt (diff)
The file was modified cmake/common.cmake (diff)
Commit 340294aee45de9b3598a31054aef3abbeb5874a2 by Alan Garny
Slight updates to our downloads pages (#1106).
The file was modified doc/downloads/index.js (diff)
The file was modified doc/downloads/previousSnapshots.js (diff)