azure-sdk-for-cpp/cmake-modules/TestProxyPrep.cmake
Rick Winter b54d509c72
Use standard syntax for MIT license (#4786)
* Use standard syntax for MIT license

* Stop appending "All rights reserved"
2023-07-12 22:37:36 -07:00

14 lines
483 B
CMake

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
macro(SetUpTestProxy subDir)
# assets.json dir
add_compile_definitions(AZURE_TEST_ASSETS_DIR="${AZ_ROOT_DIR}/${subDir}/")
#copy start stop scripts to the bin folder
file(COPY ${AZ_ROOT_DIR}/eng/scripts/Start-TestProxy.ps1
DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
file(COPY ${AZ_ROOT_DIR}/eng/scripts/Stop-TestProxy.ps1
DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
endmacro()