microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
allocator/mimalloc-sys/CMakeLists.txt
20lines · modecode
| 1 | # Copyright (c) Microsoft Corporation. |
| 2 | # Licensed under the MIT License. |
| 3 | |
| 4 | cmake_minimum_required(VERSION 3.10.0) |
| 5 | |
| 6 | |
| 7 | project(allocator_external) |
| 8 | include(ExternalProject) |
| 9 | |
| 10 | ExternalProject_Add(mimalloc |
| 11 | GIT_REPOSITORY https://github.com/microsoft/mimalloc.git |
| 12 | GIT_TAG $ENV{ALLOCATOR_MIMALLOC_TAG} |
| 13 | GIT_SHALLOW TRUE |
| 14 | GIT_PROGRESS TRUE |
| 15 | CONFIGURE_COMMAND "" |
| 16 | BUILD_COMMAND "" |
| 17 | INSTALL_COMMAND "" |
| 18 | TEST_COMMAND "" |
| 19 | USES_TERMINAL_DOWNLOAD TRUE |
| 20 | ) |
| 21 | |