blob: c7f3b3a197853e1dbea0b98bc9ab61d03442eac6 (
plain)
1
2
3
4
5
6
7
8
|
local fs = require 'bee.filesystem'
local pf = require 'bee.platform'
local CWD = fs.current_path()
local output = CWD / 'bin' / pf.OS
if pf.OS == 'Windows' then
require 'msvc'.copy_vcrt('x64', output)
end
|