mirror of
https://github.com/vlang/v.git
synced 2025-09-08 14:51:53 -04:00
29 lines
779 B
V
29 lines
779 B
V
module main
|
|
|
|
import os
|
|
|
|
const freetype_repo_url = 'https://github.com/ubawurinna/freetype-windows-binaries'
|
|
|
|
const freetype_folder = os.join_path('thirdparty', 'freetype')
|
|
|
|
fn main() {
|
|
$if windows {
|
|
println('Setup freetype...')
|
|
vexe := os.real_path(os.getenv_opt('VEXE') or { @VEXE })
|
|
vroot := os.dir(vexe)
|
|
os.chdir(vroot)!
|
|
if os.is_dir(freetype_folder) {
|
|
println('Thirdparty "freetype" is already installed.')
|
|
} else {
|
|
s := os.execute('${os.quoted_path(vexe)} retry -- git clone --filter=blob:none ${freetype_repo_url} ${freetype_folder}')
|
|
if s.exit_code != 0 {
|
|
panic(s.output)
|
|
}
|
|
println(s.output)
|
|
println('Thirdparty "freetype" installed successfully.')
|
|
}
|
|
} $else {
|
|
println('It is only for Windows to setup thirdparty "freetype".')
|
|
}
|
|
}
|