├── .gitignore ├── LICENSE ├── README.md ├── aseprite-build-script.bat └── docs └── LICENSES.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Chasnah 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Aseprite-Build-Script 2 | 3 | **Created by [Chasnah](https://chasnah.com/)** 4 | 5 | ## A customizable, automated Windows batch script for easily compiling Aseprite 6 | 7 | Please refer to Aseprite's [INSTALL.md](https://github.com/aseprite/aseprite/blob/v1.3.13/INSTALL.md) to check for any updates to Aseprite installation procedure. 8 | 9 | This script was tested on Windows 10 & 11 with Visual Studio 2022 Community and is targeted at x64 based systems. 10 | 11 | As long as all dependencies are met and all paths are correct this script will automatically download and extract 12 | both the Aseprite source code and a pre-built package of Skia then run the build process. 13 | 14 | ## NOTICE OF ANTIVIRUS FALSE POSITIVE 15 | 16 | There is currently an issue with Windows Defender falsely identify the aseprite source code zip file as containing a trojan. This will cause an error during the download portion of the script. 17 | Temporarily disable real-time protection in Windows Defender before running the script and remember to re-enable protection afterwards. 18 | PLEASE MAKE SURE YOU FULLY TRUST THE CONTENTS OF THE SCRIPT BEFORE RUNNING AND THAT YOU HAVE DOWNLOADED IT ONLY FROM THE ORIGINAL GITHUB PAGE! 19 | 20 | ## Dependencies 21 | 22 | * Tar (Bundled with recent releases of Windows 10 and newer) 23 | * The latest version of [Cmake](https://cmake.org) (3.16 or greater) 24 | * [Curl](https://curl.se/) (Bundled with recent releases of Windows 10 and newer) 25 | * [Ninja](https://ninja-build.org/) build system 26 | * [Visual Studio 2022](https://visualstudio.microsoft.com/) + Desktop Development with C++ 27 | * Windows SDK 10.0.20348.0 (Available via Visual Studio) 28 | * Installing [scoop]() is recommended to install several dependencies: 29 | 30 | scoop install ninja cmake 31 | 32 | ## Explanation of Paths 33 | 34 | The user customizable portion of this script consists of paths. Most of these paths can be changed to better fit your build environment. Below is a short description of each path in order of appearance. 35 | 36 | 1. WORKING 37 | * Main working directory for compiling. Recommended to make a separate directory from where the script is run from so it can be easily deleted to build a fresh copy of aseprite. 38 | 39 | 2. DEPS 40 | 41 | * Change DEPS path to your main working directory. The working directory will be created for you if it does not already exist. 42 | 43 | 3. ASEPRITE 44 | 45 | * Path where Aseprite source code will be unzipped into, directory is created for you. DO NOT MODIFY! 46 | 47 | 4. SKIA 48 | 49 | * Path where Skia will be unzipped into, directory is created for you. DO NOT MODIFY! 50 | 51 | 5. ASEZIP 52 | 53 | * Determines what URL aseprite source code is downloaded from, modify if you are building a different version of aseprite. 54 | 55 | 6. SKIAZIP 56 | 57 | * Determines what URL Skia is downloaded from, modify if your version of INSTALL.MD recommends a different version of Skia. 58 | 59 | 7. VISUALSTUDIO 60 | 61 | * Path to Visual Studio 2022, modify if you have installed on a different drive and/or if using a different edition. 62 | 63 | 8. WINSDK 64 | 65 | * This path is to check if the correct version of the Windows SDK is installed, modify if INSTALL.MD recommends a newer SDK version. 66 | 67 | 9. TEMP 68 | 69 | * Path to temporary directory for curls. 70 | 71 | ## Updating 72 | 73 | * If you have previously run the script and have changed the URL for ASEZIP, please make sure to delete the previous aseprite directory in the working directory (%DEPS%), and the source code ZIP file in your temp directory (%TEMP). 74 | 75 | * If you change the URL for SKIAZIP, please make sure to delete the skia directory in the working directory (%DEPS%), and the Skia ZIP file in your temp directory (%TEMP%). 76 | 77 | ## Details 78 | 79 | Aseprite recommends using Visual Studio 2022 and the latest version of the Windows 10 SDK (Currently 20348). 80 | 81 | After adjusting paths to fit your build environment simply execute the script and it will run completely hands off, creating your specified working directory and all subdirectories. 82 | 83 | Aseprite source code and a pre-built copy of Skia are curled into the temp directory and extracted into their respective subdirectories. 84 | 85 | The script will then begin the build process based on instructions from [INSTALL.md](https://github.com/aseprite/aseprite/blob/main/INSTALL.md). 86 | 87 | Upon completion the script will output a directory listing of the newly compiled aseprite.exe located in the 88 | %ASEPRITE%\build\bin directory. You can freely copy the executable and data folder located in the previously mentioned bin directory to a new location of your choosing. 89 | 90 | Enjoy using Aseprite! 91 | 92 | ## Changelog 93 | 94 | * 12/13/2024 - Updated to aseprite 1.3.10.1, added script to automatically create the TEMP directory. Encapsulated DEPS and TEMP into WORKING directory for easy cleanup. Addressed issue with Windows Defender false-positive and a temporary workaround. -------------------------------------------------------------------------------- /aseprite-build-script.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | SETLOCAL EnableDelayedExpansion 3 | 4 | :: REMEMBER TO CONSULT README.MD FIRST! 5 | :: IF YOU RECIEVED THIS SCRIPT FROM ANYWHERE OTHER THAN https://github.com/Chasnah7/aseprite-build-script 6 | :: DOUBLE CHECK TO MAKE SURE IT HAS NOT BEEN MALICIOUSLY EDITED. 7 | :: THE AUTHOR CLAIMS NO LIABILITY NOR WARRANTY FOR THIS SCRIPT 8 | :: USE AT YOUR OWN RISK. 9 | 10 | :: Paths 11 | 12 | set WORKING=C:\asebuild 13 | 14 | set DEPS=%WORKING%\deps 15 | 16 | set ASEPRITE=%DEPS%\aseprite 17 | 18 | set SKIA=%DEPS%\skia 19 | 20 | set ASEZIP=https://github.com/aseprite/aseprite/releases/download/v1.3.13/Aseprite-v1.3.13-Source.zip 21 | 22 | set SKIAZIP=https://github.com/aseprite/skia/releases/download/m102-861e4743af/Skia-Windows-Release-x64.zip 23 | 24 | set VISUALSTUDIO="C:\Program Files\Microsoft Visual Studio\2022\Community" 25 | 26 | set WINSDK="C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.UniversalCRT.Debug\10.0.20348.0" 27 | 28 | set TEMP=%WORKING%\temp 29 | 30 | :: EVERYTHING AFTER THIS POINT SHOULD BE AUTOMATED, DO NOT MODIFY UNLESS SOMETHING IS BROKEN!!! 31 | 32 | :: Dependencies check 33 | 34 | echo Checking for ninja... 35 | where /q ninja 36 | if ERRORLEVEL 1 ( 37 | echo Ninja is not installed 38 | echo Setup scoop and invoke: 39 | echo scoop install ninja 40 | exit /b 1 41 | ) 42 | if ERRORLEVEL 0 ( 43 | echo Ninja was found 44 | ) 45 | 46 | echo Checking for cmake... 47 | where /q cmake 48 | if ERRORLEVEL 1 ( 49 | echo Cmake is not installed 50 | echo Setup scoop and invoke: 51 | echo scoop install cmake 52 | exit /b 1 53 | ) 54 | if ERRORLEVEL 0 ( 55 | echo Cmake was found 56 | ) 57 | 58 | echo Checking for Visual Studio... 59 | if exist %VISUALSTUDIO% ( 60 | echo Visual Studio was found 61 | ) 62 | if not exist %VISUALSTUDIO% ( 63 | echo Visual Studio was not found 64 | echo Did you remember modify the path to fit your installation? 65 | exit /b 1 66 | ) 67 | 68 | echo Checking for Desktop Development with C++ 69 | if exist %VISUALSTUDIO%\VC\Tools\Llvm ( 70 | echo Desktop Development with C++ was found 71 | ) 72 | if not exist %VISUALSTUDIO%\VC\Tools\Llvm ( 73 | echo Desktop Development with C++ was not found 74 | echo Did you select the option from the Visual Studio Installer? 75 | exit /b 1 76 | ) 77 | 78 | echo Checking for Windows SDK... 79 | if exist %WINSDK% ( 80 | echo Correct Windows SDK was found 81 | ) 82 | if not exist %WINSDK% ( 83 | echo Correct Windows SDK version was not found 84 | echo Did you install the recommended version alongside Desktop Development with C++ for VS? 85 | echo Did you remember to update the path to the recommended version in INSTALL.MD? 86 | exit /b 1 87 | ) 88 | 89 | echo All dependencies met 90 | 91 | :: Beginning directory creation and downloads 92 | 93 | echo Checking for working directory... 94 | if exist %WORKING% ( 95 | echo Working directory found 96 | ) 97 | if not exist %WORKING% ( 98 | echo Creating working directory 99 | md %WORKING% 100 | ) 101 | if ERRORLEVEL 1 ( 102 | echo Something went wrong in checking for or creating the working directory. 103 | echo Did you set the correct WORKING path for your system? 104 | echo Do you have permission to create the defined working directory? 105 | echo Is the defined working directory on a writable drive? 106 | exit /b 1 107 | ) 108 | 109 | echo Checking for temp directory... 110 | if exist %TEMP% ( 111 | echo Temp directory found 112 | ) 113 | if not exist %TEMP% ( 114 | echo Creating temp directory 115 | md %TEMP% 116 | ) 117 | if ERRORLEVEL 1 ( 118 | echo Something went wrong in checking for or creating the temp directory. 119 | echo Did you set the correct TEMP path for your system? 120 | echo Do you have permission to create the defined temp directory? 121 | exit /b 1 122 | ) 123 | 124 | echo Checking for deps directory... 125 | if exist %DEPS% ( 126 | echo Deps directory found 127 | ) 128 | if not exist %DEPS% ( 129 | echo Creating deps directory 130 | md %DEPS% 131 | ) 132 | if ERRORLEVEL 1 ( 133 | echo Something went wrong in checking for or creating the deps directory. 134 | echo Did you set the correct DEPS path for your system? 135 | echo Do you have the proper write permissions for you working directory? 136 | exit /b 1 137 | ) 138 | 139 | echo Checking for aseprite checkout... 140 | if exist %ASEPRITE%\NUL ( 141 | echo Aseprite was found 142 | goto skia 143 | ) 144 | if not exist %ASEPRITE%\NUL ( 145 | echo Aseprite was not found 146 | echo Downloading aseprite... 147 | del %TEMP%\asesrc.zip 148 | curl %ASEZIP% -L -o %TEMP%\asesrc.zip 149 | echo Unzipping to %ASEPRITE%... 150 | md %ASEPRITE% 151 | tar -xf %TEMP%\asesrc.zip -C %ASEPRITE% 152 | ) 153 | if ERRORLEVEL 1 ( 154 | echo Aseprite failed to download and extract 155 | echo Is Windows Defender blocking it as a false positive? 156 | echo Is TEMP correctly set? 157 | echo Are you connected to the internet? 158 | echo Does ASEZIP point to the correct URL? 159 | echo Fatal error. Aborting... 160 | exit /b 1 161 | ) 162 | if ERRORLEVEL 0 ( 163 | echo Aseprite was successfully downloaded and unzipped 164 | ) 165 | 166 | :skia 167 | echo Checking for Skia... 168 | if exist %SKIA%\NUL ( 169 | echo Skia was found 170 | goto check 171 | ) 172 | if not exist %SKIA%\NUL ( 173 | echo Skia was not found 174 | echo Downloading Skia m102... 175 | del %TEMP%\skia.zip 176 | curl %SKIAZIP% -L -o %TEMP%\skia.zip 177 | echo Unzipping to %SKIA%... 178 | md %SKIA% 179 | tar -xf %TEMP%\skia.zip -C %SKIA% 180 | ) 181 | if ERRORLEVEL 1 ( 182 | echo Skia failed to download and extract 183 | echo Is TEMP correctly set? 184 | echo Are you connected to the internet? 185 | echo Does SKIAZIP point to the correct URL? 186 | echo Fatal Error. Aborting... 187 | exit /b 1 188 | ) 189 | if ERRORLEVEL 0 ( 190 | echo Skia was successfully downloaded and unzipped 191 | ) 192 | 193 | :check 194 | echo All checks okay! 195 | echo . 196 | 197 | :: Compile 198 | 199 | echo Building Aseprite on Windows 200 | echo . 201 | 202 | call %VISUALSTUDIO%\Common7\Tools\VsDevCmd.bat -arch=x64 203 | 204 | pushd %ASEPRITE% 205 | md build 206 | cd build 207 | call cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DLAF_BACKEND=skia -DSKIA_DIR=%SKIA% -DSKIA_LIBRARY_DIR=%SKIA%\out\Release-x64 -DSKIA_LIBRARY=%SKIA%\out\Release-x64\skia.lib -G Ninja .. 208 | call ninja aseprite 209 | if ERRORLEVEL 1 ( 210 | echo Failed to compile 211 | echo Are you using the correct version of Skia? 212 | echo Was aseprite properly downloaded? Make sure the %ASEPRITE% directory isn't empty. 213 | echo If you edited aseprite's source code you may have made an error, consult the compiler's output. 214 | echo Fatal error. Aborting... 215 | popd 216 | exit /b %ERRORLEVEL% 217 | ) 218 | 219 | echo Build complete 220 | echo Finished build is located in the %ASEPRITE%/build/bin directory. 221 | dir %ASEPRITE%\build\bin\ 222 | echo The aseprite executable and data folder listed above can be moved to a location of your choosing. 223 | -------------------------------------------------------------------------------- /docs/LICENSES.md: -------------------------------------------------------------------------------- 1 | # [aseprite](https://www.aseprite.org/) 2 | 3 | ``` 4 | END-USER LICENSE AGREEMENT FOR ASEPRITE 5 | 6 | IMPORTANT: PLEASE READ THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT CAREFULLY BEFORE CONTINUING WITH THIS PROGRAM INSTALL. 7 | 8 | This End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single entity) and Igara Studio S.A. (hereinafter referred to as "Licensor"), for the software product(s) identified above which may include associated software components, media, printed materials, and "online" or electronic documentation ("SOFTWARE PRODUCT"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. This license agreement represents the entire agreement concerning the program between You and the Licensor, and it supersedes any prior proposal, representation, or understanding between the parties. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE PRODUCT. 9 | 10 | The SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold. 11 | 12 | 1. GRANT OF LICENSE. 13 | The SOFTWARE PRODUCT is licensed as follows: 14 | (a) Installation and Use. 15 | The Licensor grants you the right to install and use copies of the SOFTWARE PRODUCT on your computer running a validly licensed copy of the operating system for which the SOFTWARE PRODUCT was designed. 16 | (b) Backup Copies. 17 | You may also make copies of the SOFTWARE PRODUCT as may be necessary for backup and archival purposes. 18 | 19 | 2. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS. 20 | (a) Maintenance of Copyright Notices. 21 | You must not remove or alter any copyright notices on any and all copies of the SOFTWARE PRODUCT. 22 | (b) Distribution. 23 | You may not distribute copies of the SOFTWARE PRODUCT to third parties. Evaluation versions available for download from the Licensor's websites may be freely distributed. 24 | (c) Prohibition on Reverse Engineering, Decompilation, and Disassembly. 25 | You may not reverse engineer, decompile, or disassemble the SOFTWARE PRODUCT, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation. 26 | (d) Rental. 27 | You may not rent, lease, or lend the SOFTWARE PRODUCT. 28 | (e) Support Services. 29 | The Licensor may provide you with support services related to the SOFTWARE PRODUCT ("Support Services"). Any supplemental software code provided to you as part of the Support Services shall be considered part of the SOFTWARE PRODUCT and subject to the terms and conditions of this EULA. 30 | (f) Compliance with Applicable Laws. 31 | You must comply with all applicable laws regarding use of the SOFTWARE PRODUCT. 32 | (g) Source code. 33 | You may only compile and modify the source code of the SOFTWARE PRODUCT for your own personal purpose or to propose a contribution to the SOFTWARE PRODUCT. 34 | 35 | 3. TERMINATION 36 | Without prejudice to any other rights, the Licensor may terminate this EULA if you fail to comply with the terms and conditions of this EULA. In such event, you must destroy all copies of the SOFTWARE PRODUCT in your possession. 37 | 38 | 4. COPYRIGHT 39 | All title, including but not limited to copyrights, in and to the SOFTWARE PRODUCT and any copies thereof are owned by the Licensor or its suppliers. All title and intellectual property rights in and to the content which may be accessed through use of the SOFTWARE PRODUCT is the property of the respective content owner and may be protected by applicable copyright or other intellectual property laws and treaties. This EULA grants you no rights to use such content. All rights not expressly granted are reserved by the Licensor. 40 | 41 | 5. NO WARRANTIES 42 | The Licensor expressly disclaims any warranty for the SOFTWARE PRODUCT. The SOFTWARE PRODUCT is provided 'As Is' without any express or implied warranty of any kind, including but not limited to any warranties of merchantability, noninfringement, or fitness of a particular purpose. The Licensor does not warrant or assume responsibility for the accuracy or completeness of any information, text, graphics, links or other items contained within the SOFTWARE PRODUCT. The Licensor makes no warranties respecting any harm that may be caused by the transmission of a computer virus, worm, time bomb, logic bomb, or other such computer program. The Licensor further expressly disclaims any warranty or representation to Authorized Users or to any third party. 43 | 44 | 6. LIMITATION OF LIABILITY 45 | In no event shall the Licensor be liable for any damages (including, without limitation, lost profits, business interruption, or lost information) rising out of 'Authorized Users' use of or inability to use the SOFTWARE PRODUCT, even if the Licensor has been advised of the possibility of such damages. In no event will the Licensor be liable for loss of data or for indirect, special, incidental, consequential (including lost profit), or other damages based in contract, tort or otherwise. The Licensor shall have no liability with respect to the content of the SOFTWARE PRODUCT or any part thereof, including but not limited to errors or omissions contained therein, libel, infringements of rights of publicity, privacy, trademark rights, business interruption, personal injury, loss of privacy, moral rights or the disclosure of confidential information. 46 | ``` 47 | 48 | # [cmake](https://cmake.org/) 49 | 50 | ``` 51 | CMake - Cross Platform Makefile Generator 52 | Copyright 2000-2022 Kitware, Inc. and Contributors 53 | All rights reserved. 54 | 55 | Redistribution and use in source and binary forms, with or without 56 | modification, are permitted provided that the following conditions 57 | are met: 58 | 59 | * Redistributions of source code must retain the above copyright 60 | notice, this list of conditions and the following disclaimer. 61 | 62 | * Redistributions in binary form must reproduce the above copyright 63 | notice, this list of conditions and the following disclaimer in the 64 | documentation and/or other materials provided with the distribution. 65 | 66 | * Neither the name of Kitware, Inc. nor the names of Contributors 67 | may be used to endorse or promote products derived from this 68 | software without specific prior written permission. 69 | 70 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 71 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 72 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 73 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 74 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 75 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 76 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 77 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 78 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 79 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 80 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 81 | 82 | ------------------------------------------------------------------------------ 83 | 84 | The following individuals and institutions are among the Contributors: 85 | 86 | * Aaron C. Meadows 87 | * Adriaan de Groot 88 | * Aleksey Avdeev 89 | * Alexander Neundorf 90 | * Alexander Smorkalov 91 | * Alexey Sokolov 92 | * Alex Merry 93 | * Alex Turbov 94 | * Andreas Pakulat 95 | * Andreas Schneider 96 | * André Rigland Brodtkorb 97 | * Axel Huebl, Helmholtz-Zentrum Dresden - Rossendorf 98 | * Benjamin Eikel 99 | * Bjoern Ricks 100 | * Brad Hards 101 | * Christopher Harvey 102 | * Christoph Grüninger 103 | * Clement Creusot 104 | * Daniel Blezek 105 | * Daniel Pfeifer 106 | * Enrico Scholz 107 | * Eran Ifrah 108 | * Esben Mose Hansen, Ange Optimization ApS 109 | * Geoffrey Viola 110 | * Google Inc 111 | * Gregor Jasny 112 | * Helio Chissini de Castro 113 | * Ilya Lavrenov 114 | * Insight Software Consortium 115 | * Intel Corporation 116 | * Jan Woetzel 117 | * Jordan Williams 118 | * Julien Schueller 119 | * Kelly Thompson 120 | * Konstantin Podsvirov 121 | * Laurent Montel 122 | * Mario Bensi 123 | * Martin Gräßlin 124 | * Mathieu Malaterre 125 | * Matthaeus G. Chajdas 126 | * Matthias Kretz 127 | * Matthias Maennich 128 | * Michael Hirsch, Ph.D. 129 | * Michael Stürmer 130 | * Miguel A. Figueroa-Villanueva 131 | * Mike Jackson 132 | * Mike McQuaid 133 | * Nicolas Bock 134 | * Nicolas Despres 135 | * Nikita Krupen'ko 136 | * NVIDIA Corporation 137 | * OpenGamma Ltd. 138 | * Patrick Stotko 139 | * Per Øyvind Karlsen 140 | * Peter Collingbourne 141 | * Petr Gotthard 142 | * Philip Lowman 143 | * Philippe Proulx 144 | * Raffi Enficiaud, Max Planck Society 145 | * Raumfeld 146 | * Roger Leigh 147 | * Rolf Eike Beer 148 | * Roman Donchenko 149 | * Roman Kharitonov 150 | * Ruslan Baratov 151 | * Sebastian Holtermann 152 | * Stephen Kelly 153 | * Sylvain Joubert 154 | * The Qt Company Ltd. 155 | * Thomas Sondergaard 156 | * Tobias Hunger 157 | * Todd Gamblin 158 | * Tristan Carel 159 | * University of Dundee 160 | * Vadim Zhukov 161 | * Will Dicharry 162 | 163 | See version control history for details of individual contributions. 164 | 165 | The above copyright and license notice applies to distributions of 166 | CMake in source and binary form. Third-party software packages supplied 167 | with CMake under compatible licenses provide their own copyright notices 168 | documented in corresponding subdirectories or source files. 169 | 170 | ------------------------------------------------------------------------------ 171 | 172 | CMake was initially developed by Kitware with the following sponsorship: 173 | 174 | * National Library of Medicine at the National Institutes of Health 175 | as part of the Insight Segmentation and Registration Toolkit (ITK). 176 | 177 | * US National Labs (Los Alamos, Livermore, Sandia) ASC Parallel 178 | Visualization Initiative. 179 | 180 | * National Alliance for Medical Image Computing (NAMIC) is funded by the 181 | National Institutes of Health through the NIH Roadmap for Medical Research, 182 | Grant U54 EB005149. 183 | 184 | * Kitware, Inc. 185 | ``` 186 | 187 | # [curl](https://curl.se) 188 | 189 | ``` 190 | COPYRIGHT AND PERMISSION NOTICE 191 | 192 | Copyright (c) 1996 - 2011, Daniel Stenberg, 193 | 194 | All rights reserved. 195 | 196 | Permission to use, copy, modify, and distribute this software for any purpose 197 | with or without fee is hereby granted, provided that the above copyright 198 | notice and this permission notice appear in all copies. 199 | 200 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 201 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 202 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN 203 | NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 204 | DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 205 | OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE 206 | OR OTHER DEALINGS IN THE SOFTWARE. 207 | 208 | Except as contained in this notice, the name of a copyright holder shall not 209 | be used in advertising or otherwise to promote the sale, use or other dealings 210 | in this Software without prior written authorization of the copyright holder. 211 | ``` 212 | 213 | # [ninja](https://ninja-build.org/) 214 | 215 | ``` 216 | 217 | Apache License 218 | Version 2.0, January 2010 219 | http://www.apache.org/licenses/ 220 | 221 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 222 | 223 | 1. Definitions. 224 | 225 | "License" shall mean the terms and conditions for use, reproduction, 226 | and distribution as defined by Sections 1 through 9 of this document. 227 | 228 | "Licensor" shall mean the copyright owner or entity authorized by 229 | the copyright owner that is granting the License. 230 | 231 | "Legal Entity" shall mean the union of the acting entity and all 232 | other entities that control, are controlled by, or are under common 233 | control with that entity. For the purposes of this definition, 234 | "control" means (i) the power, direct or indirect, to cause the 235 | direction or management of such entity, whether by contract or 236 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 237 | outstanding shares, or (iii) beneficial ownership of such entity. 238 | 239 | "You" (or "Your") shall mean an individual or Legal Entity 240 | exercising permissions granted by this License. 241 | 242 | "Source" form shall mean the preferred form for making modifications, 243 | including but not limited to software source code, documentation 244 | source, and configuration files. 245 | 246 | "Object" form shall mean any form resulting from mechanical 247 | transformation or translation of a Source form, including but 248 | not limited to compiled object code, generated documentation, 249 | and conversions to other media types. 250 | 251 | "Work" shall mean the work of authorship, whether in Source or 252 | Object form, made available under the License, as indicated by a 253 | copyright notice that is included in or attached to the work 254 | (an example is provided in the Appendix below). 255 | 256 | "Derivative Works" shall mean any work, whether in Source or Object 257 | form, that is based on (or derived from) the Work and for which the 258 | editorial revisions, annotations, elaborations, or other modifications 259 | represent, as a whole, an original work of authorship. For the purposes 260 | of this License, Derivative Works shall not include works that remain 261 | separable from, or merely link (or bind by name) to the interfaces of, 262 | the Work and Derivative Works thereof. 263 | 264 | "Contribution" shall mean any work of authorship, including 265 | the original version of the Work and any modifications or additions 266 | to that Work or Derivative Works thereof, that is intentionally 267 | submitted to Licensor for inclusion in the Work by the copyright owner 268 | or by an individual or Legal Entity authorized to submit on behalf of 269 | the copyright owner. For the purposes of this definition, "submitted" 270 | means any form of electronic, verbal, or written communication sent 271 | to the Licensor or its representatives, including but not limited to 272 | communication on electronic mailing lists, source code control systems, 273 | and issue tracking systems that are managed by, or on behalf of, the 274 | Licensor for the purpose of discussing and improving the Work, but 275 | excluding communication that is conspicuously marked or otherwise 276 | designated in writing by the copyright owner as "Not a Contribution." 277 | 278 | "Contributor" shall mean Licensor and any individual or Legal Entity 279 | on behalf of whom a Contribution has been received by Licensor and 280 | subsequently incorporated within the Work. 281 | 282 | 2. Grant of Copyright License. Subject to the terms and conditions of 283 | this License, each Contributor hereby grants to You a perpetual, 284 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 285 | copyright license to reproduce, prepare Derivative Works of, 286 | publicly display, publicly perform, sublicense, and distribute the 287 | Work and such Derivative Works in Source or Object form. 288 | 289 | 3. Grant of Patent License. Subject to the terms and conditions of 290 | this License, each Contributor hereby grants to You a perpetual, 291 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 292 | (except as stated in this section) patent license to make, have made, 293 | use, offer to sell, sell, import, and otherwise transfer the Work, 294 | where such license applies only to those patent claims licensable 295 | by such Contributor that are necessarily infringed by their 296 | Contribution(s) alone or by combination of their Contribution(s) 297 | with the Work to which such Contribution(s) was submitted. If You 298 | institute patent litigation against any entity (including a 299 | cross-claim or counterclaim in a lawsuit) alleging that the Work 300 | or a Contribution incorporated within the Work constitutes direct 301 | or contributory patent infringement, then any patent licenses 302 | granted to You under this License for that Work shall terminate 303 | as of the date such litigation is filed. 304 | 305 | 4. Redistribution. You may reproduce and distribute copies of the 306 | Work or Derivative Works thereof in any medium, with or without 307 | modifications, and in Source or Object form, provided that You 308 | meet the following conditions: 309 | 310 | (a) You must give any other recipients of the Work or 311 | Derivative Works a copy of this License; and 312 | 313 | (b) You must cause any modified files to carry prominent notices 314 | stating that You changed the files; and 315 | 316 | (c) You must retain, in the Source form of any Derivative Works 317 | that You distribute, all copyright, patent, trademark, and 318 | attribution notices from the Source form of the Work, 319 | excluding those notices that do not pertain to any part of 320 | the Derivative Works; and 321 | 322 | (d) If the Work includes a "NOTICE" text file as part of its 323 | distribution, then any Derivative Works that You distribute must 324 | include a readable copy of the attribution notices contained 325 | within such NOTICE file, excluding those notices that do not 326 | pertain to any part of the Derivative Works, in at least one 327 | of the following places: within a NOTICE text file distributed 328 | as part of the Derivative Works; within the Source form or 329 | documentation, if provided along with the Derivative Works; or, 330 | within a display generated by the Derivative Works, if and 331 | wherever such third-party notices normally appear. The contents 332 | of the NOTICE file are for informational purposes only and 333 | do not modify the License. You may add Your own attribution 334 | notices within Derivative Works that You distribute, alongside 335 | or as an addendum to the NOTICE text from the Work, provided 336 | that such additional attribution notices cannot be construed 337 | as modifying the License. 338 | 339 | You may add Your own copyright statement to Your modifications and 340 | may provide additional or different license terms and conditions 341 | for use, reproduction, or distribution of Your modifications, or 342 | for any such Derivative Works as a whole, provided Your use, 343 | reproduction, and distribution of the Work otherwise complies with 344 | the conditions stated in this License. 345 | 346 | 5. Submission of Contributions. Unless You explicitly state otherwise, 347 | any Contribution intentionally submitted for inclusion in the Work 348 | by You to the Licensor shall be under the terms and conditions of 349 | this License, without any additional terms or conditions. 350 | Notwithstanding the above, nothing herein shall supersede or modify 351 | the terms of any separate license agreement you may have executed 352 | with Licensor regarding such Contributions. 353 | 354 | 6. Trademarks. This License does not grant permission to use the trade 355 | names, trademarks, service marks, or product names of the Licensor, 356 | except as required for reasonable and customary use in describing the 357 | origin of the Work and reproducing the content of the NOTICE file. 358 | 359 | 7. Disclaimer of Warranty. Unless required by applicable law or 360 | agreed to in writing, Licensor provides the Work (and each 361 | Contributor provides its Contributions) on an "AS IS" BASIS, 362 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 363 | implied, including, without limitation, any warranties or conditions 364 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 365 | PARTICULAR PURPOSE. You are solely responsible for determining the 366 | appropriateness of using or redistributing the Work and assume any 367 | risks associated with Your exercise of permissions under this License. 368 | 369 | 8. Limitation of Liability. In no event and under no legal theory, 370 | whether in tort (including negligence), contract, or otherwise, 371 | unless required by applicable law (such as deliberate and grossly 372 | negligent acts) or agreed to in writing, shall any Contributor be 373 | liable to You for damages, including any direct, indirect, special, 374 | incidental, or consequential damages of any character arising as a 375 | result of this License or out of the use or inability to use the 376 | Work (including but not limited to damages for loss of goodwill, 377 | work stoppage, computer failure or malfunction, or any and all 378 | other commercial damages or losses), even if such Contributor 379 | has been advised of the possibility of such damages. 380 | 381 | 9. Accepting Warranty or Additional Liability. While redistributing 382 | the Work or Derivative Works thereof, You may choose to offer, 383 | and charge a fee for, acceptance of support, warranty, indemnity, 384 | or other liability obligations and/or rights consistent with this 385 | License. However, in accepting such obligations, You may act only 386 | on Your own behalf and on Your sole responsibility, not on behalf 387 | of any other Contributor, and only if You agree to indemnify, 388 | defend, and hold each Contributor harmless for any liability 389 | incurred by, or claims asserted against, such Contributor by reason 390 | of your accepting any such warranty or additional liability. 391 | 392 | END OF TERMS AND CONDITIONS 393 | 394 | APPENDIX: How to apply the Apache License to your work. 395 | 396 | To apply the Apache License to your work, attach the following 397 | boilerplate notice, with the fields enclosed by brackets "[]" 398 | replaced with your own identifying information. (Don't include 399 | the brackets!) The text should be enclosed in the appropriate 400 | comment syntax for the file format. We also recommend that a 401 | file or class name and description of purpose be included on the 402 | same "printed page" as the copyright notice for easier 403 | identification within third-party archives. 404 | 405 | Copyright [yyyy] [name of copyright owner] 406 | 407 | Licensed under the Apache License, Version 2.0 (the "License"); 408 | you may not use this file except in compliance with the License. 409 | You may obtain a copy of the License at 410 | 411 | http://www.apache.org/licenses/LICENSE-2.0 412 | 413 | Unless required by applicable law or agreed to in writing, software 414 | distributed under the License is distributed on an "AS IS" BASIS, 415 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 416 | See the License for the specific language governing permissions and 417 | limitations under the License. 418 | ``` 419 | 420 | # [scoop](https://scoop.sh/) 421 | 422 | ``` 423 | This is free and unencumbered software released into the public domain. 424 | 425 | Anyone is free to copy, modify, publish, use, compile, sell, or 426 | distribute this software, either in source code form or as a compiled 427 | binary, for any purpose, commercial or non-commercial, and by any 428 | means. 429 | 430 | In jurisdictions that recognize copyright laws, the author or authors 431 | of this software dedicate any and all copyright interest in the 432 | software to the public domain. We make this dedication for the benefit 433 | of the public at large and to the detriment of our heirs and 434 | successors. We intend this dedication to be an overt act of 435 | relinquishment in perpetuity of all present and future rights to this 436 | software under copyright law. 437 | 438 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 439 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 440 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 441 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 442 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 443 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 444 | OTHER DEALINGS IN THE SOFTWARE. 445 | 446 | For more information, please refer to 447 | ``` 448 | 449 | # [skia](https://skia.org/) 450 | 451 | ``` 452 | Copyright (c) 2011 Google Inc. All rights reserved. 453 | 454 | Redistribution and use in source and binary forms, with or without 455 | modification, are permitted provided that the following conditions are 456 | met: 457 | 458 | * Redistributions of source code must retain the above copyright 459 | notice, this list of conditions and the following disclaimer. 460 | 461 | * Redistributions in binary form must reproduce the above copyright 462 | notice, this list of conditions and the following disclaimer in 463 | the documentation and/or other materials provided with the 464 | distribution. 465 | 466 | * Neither the name of the copyright holder nor the names of its 467 | contributors may be used to endorse or promote products derived 468 | from this software without specific prior written permission. 469 | 470 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 471 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 472 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 473 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 474 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 475 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 476 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 477 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 478 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 479 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 480 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 481 | ``` 482 | --------------------------------------------------------------------------------