summaryrefslogtreecommitdiff
path: root/make/copy_vcrt.lua
blob: bd08a9fa89623cb26be41a7d5d40aad9e8da7a4f (plain)
1
2
3
4
5
6
local output, arch = ...
local fs = require 'bee.filesystem'
require 'msvc'.copy_vcrt(
    arch == "x86" and 'x86' or 'x64',
    fs.current_path() / output
)