microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.3.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

allocator/mimalloc-sys/CMakeLists.txt

20lines · modecode

1# Copyright (c) Microsoft Corporation.
2# Licensed under the MIT License.
3
4cmake_minimum_required(VERSION 3.10.0)
5
6
7project(allocator_external)
8include(ExternalProject)
9
10ExternalProject_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