Files
kotlin-fork/kotlin-native/performance/scripts/get_parameter_value.bat
T
2021-09-03 07:35:16 +00:00

17 lines
426 B
Batchfile
Executable File

@echo off
set "ALL_PARAMS=%konanCompilerArgs%"
set "MEMORY_MODEL=%1"
if "%MEMORY_MODEL%" == "experimental" (
if "%ALL_PARAMS%" == "" (
set "ALL_PARAMS=-memory-model experimental"
) ELSE (
set "ALL_PARAMS=-memory-model experimental %ALL_PARAMS%"
)
)
if not "%ALL_PARAMS%" == "" (
SET "ALL_PARAMS=-PcompilerArgs=%ALL_PARAMS%"
)
echo "##teamcity[setParameter name='env.konanCompilerArgs' value='%ALL_PARAMS%']"