Lines Matching full:variable

7 New-Variable -Name 'LIBRESSL_URL' `
10 New-Variable -Name 'LIBRESSL' -Value 'libressl-4.0.0' -Option Constant
11 New-Variable -Name 'CRYPTO_LIB' -Value 'crypto' -Option Constant
12 New-Variable -Name 'CRYPTO_DLL' -Value 'crypto-55' -Option Constant
15 New-Variable -Name 'LIBCBOR' -Value 'libcbor-0.12.0' -Option Constant
16 New-Variable -Name 'LIBCBOR_BRANCH' -Value 'v0.12.0' -Option Constant
17 New-Variable -Name 'LIBCBOR_GIT' -Value 'https://github.com/pjk/libcbor' `
21 New-Variable -Name 'ZLIB' -Value 'zlib-1.3.1' -Option Constant
22 New-Variable -Name 'ZLIB_BRANCH' -Value 'v1.3.1' -Option Constant
23 New-Variable -Name 'ZLIB_GIT' -Value 'https://github.com/madler/zlib' `
27 New-Variable -Name 'BUILD' -Value "$PSScriptRoot\..\build" -Option Constant
28 New-Variable -Name 'OUTPUT' -Value "$PSScriptRoot\..\output" -Option Constant
31 New-Variable -Name 'STAGE' -Value "${BUILD}\${Arch}\${Type}" -Option Constant
32 New-Variable -Name 'PREFIX' -Value "${OUTPUT}\${Arch}\${Type}" -Option Constant
36 New-Variable -Name 'RUNTIME' -Value '/MD' -Option Constant
37 New-Variable -Name 'SHARED' -Value 'ON' -Option Constant
38 New-Variable -Name 'CMAKE_MSVC_RUNTIME_LIBRARY' -Option Constant `
41 New-Variable -Name 'RUNTIME' -Value '/MT' -Option Constant
42 New-Variable -Name 'SHARED' -Value 'OFF' -Option Constant
43 New-Variable -Name 'CMAKE_MSVC_RUNTIME_LIBRARY' -Option Constant `
46 New-Variable -Name 'CFLAGS_DEBUG' -Value "${RUNTIME}d /Zi /guard:cf /sdl" `
48 New-Variable -Name 'CFLAGS_RELEASE' -Value "${RUNTIME} /Zi /guard:cf /sdl" `