Mercurial > hg > orthanc-stone
view Applications/StoneWebViewer/WebAssembly/JavaScriptLibraries.cmake @ 1739:9ac2a65d4172
upgrade to year 2021
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 06 Jan 2021 17:50:00 +0100 |
parents | 05b55b89a134 |
children | 3889ae96d2e9 |
line wrap: on
line source
# Stone of Orthanc # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2021 Osimis S.A., Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Affero General Public License # as published by the Free Software Foundation, either version 3 of # the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. set(BASE_URL "http://orthanc.osimis.io/ThirdPartyDownloads") DownloadPackage( "f9746611d1d77072f5ce5a1d9e915c42" "${BASE_URL}/fontawesome-free-5.14.0-web.zip" "${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web") DownloadPackage( "b40f2ec8769ebee23a395fa2b907e4b4" "${BASE_URL}/bootstrap-3.4.1-dist.zip" "${CMAKE_CURRENT_BINARY_DIR}/bootstrap-3.4.1-dist") DownloadPackage( "8242afdc5bd44105d9dc9e6535315484" "${BASE_URL}/dicom-web/vuejs-2.6.10.tar.gz" "${CMAKE_CURRENT_BINARY_DIR}/vue-2.6.10") DownloadPackage( "3e2b4e1522661f7fcf8ad49cb933296c" "${BASE_URL}/dicom-web/axios-0.19.0.tar.gz" "${CMAKE_CURRENT_BINARY_DIR}/axios-0.19.0") DownloadFile( "220afd743d9e9643852e31a135a9f3ae" "${BASE_URL}/jquery-3.4.1.min.js") if (NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/pdfjs) DownloadPackage( "f2e0f7eacd8946bd3111a2d10dceaa72" "${BASE_URL}/web-viewer/pdfjs-2.5.207-dist.zip" "${CMAKE_CURRENT_BINARY_DIR}/build") # Reorganize the PDF.js package file(REMOVE ${CMAKE_CURRENT_BINARY_DIR}/LICENSE) file(REMOVE_RECURSE ${CMAKE_CURRENT_BINARY_DIR}/web) file(RENAME ${CMAKE_CURRENT_BINARY_DIR}/build ${CMAKE_CURRENT_BINARY_DIR}/pdfjs) endif() install( FILES ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/css/all.css ${CMAKE_CURRENT_BINARY_DIR}/bootstrap-3.4.1-dist/css/bootstrap.css ${CMAKE_CURRENT_BINARY_DIR}/bootstrap-3.4.1-dist/css/bootstrap.css.map DESTINATION ${ORTHANC_STONE_INSTALL_PREFIX}/css ) install( FILES ${CMAKE_CURRENT_BINARY_DIR}/bootstrap-3.4.1-dist/js/bootstrap.min.js ${CMAKE_SOURCE_DIR}/ThirdPartyDownloads/jquery-3.4.1.min.js ${CMAKE_CURRENT_BINARY_DIR}/vue-2.6.10/dist/vue.min.js ${CMAKE_CURRENT_BINARY_DIR}/axios-0.19.0/dist/axios.min.js ${CMAKE_CURRENT_BINARY_DIR}/axios-0.19.0/dist/axios.min.map ${CMAKE_CURRENT_BINARY_DIR}/pdfjs/pdf.js ${CMAKE_CURRENT_BINARY_DIR}/pdfjs/pdf.js.map ${CMAKE_CURRENT_BINARY_DIR}/pdfjs/pdf.worker.js ${CMAKE_CURRENT_BINARY_DIR}/pdfjs/pdf.worker.js.map DESTINATION ${ORTHANC_STONE_INSTALL_PREFIX}/js ) install( FILES ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-brands-400.eot ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-brands-400.svg ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-brands-400.ttf ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-brands-400.woff ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-brands-400.woff2 ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-regular-400.eot ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-regular-400.svg ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-regular-400.ttf ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-regular-400.woff ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-regular-400.woff2 ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-solid-900.eot ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-solid-900.svg ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-solid-900.ttf ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-solid-900.woff ${CMAKE_CURRENT_BINARY_DIR}/fontawesome-free-5.14.0-web/webfonts/fa-solid-900.woff2 ${CMAKE_SOURCE_DIR}/../Resources/OpenSans/2017-11-13-OpenSans-Regular.ttf ${CMAKE_SOURCE_DIR}/../Resources/OpenSans/2017-11-13-OpenSans-Regular.woff2 DESTINATION ${ORTHANC_STONE_INSTALL_PREFIX}/webfonts )