1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/dl/dl.v
2020-12-15 18:55:04 +02:00

18 lines
226 B
V

module dl
pub const (
version = 1
dl_ext = get_shared_library_extension()
)
pub fn get_shared_library_extension() string {
mut res := '.so'
$if macos {
res = '.dylib'
}
$if windows {
res = '.dll'
}
return res
}