This commit is contained in:
Robin Kuzmin 2022-12-14 16:06:32 -08:00 коммит произвёл GitHub
Родитель b9238214c4
Коммит 37484317ff
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -7,7 +7,7 @@
<NativeRootPath>$([MSBuild]::NormalizePath($(EnlistmentRoot)src/Simulation/Native))</NativeRootPath>
<NativeBuildPath>$([MSBuild]::NormalizePath($(NativeRootPath)/build/drop))</NativeBuildPath>
<ExperimentalSimBuildPath>$([MSBuild]::NormalizePath($(EnlistmentRoot)src/Simulation/qdk_sim_rs/drop))</ExperimentalSimBuildPath>
<NativeSparseSimBuildPath>$([MSBuild]::NormalizePath($(EnlistmentRoot)src/Simulation/NativeSparseSimulator/build))</NativeSparseSimBuildPath>
<NativeSparseSimBuildPath>$([MSBuild]::NormalizePath($(EnlistmentRoot)src/Simulation/NativeSparseSimulator/build/drop))</NativeSparseSimBuildPath>
</PropertyGroup>
<ItemGroup>

Просмотреть файл

@ -45,3 +45,9 @@ foreach(TEST SparseSimulatorTests CSharpIntegrationTests)
target_include_directories(${TEST} PRIVATE ../../Qir/Common/Externals/catch2)
add_test(${TEST} ${TEST})
endforeach()
install(TARGETS Microsoft.Quantum.SparseSimulator.Runtime
RUNTIME DESTINATION "${CMAKE_BINARY_DIR}/drop"
LIBRARY DESTINATION "${CMAKE_BINARY_DIR}/drop"
ARCHIVE DESTINATION "${CMAKE_BINARY_DIR}/drop"
)

Просмотреть файл

@ -67,7 +67,7 @@ Push-Location $BuildDir
( & "cmake" $CmakeConfigArgs ) || ( $FailureCommands.Invoke() )
# Invoke the build scripts:
( cmake --build . ) || ( $FailureCommands.Invoke() )
( cmake --build . --target install) || ( $FailureCommands.Invoke() )
# popd
Pop-Location