11 lines
140 B
V
11 lines
140 B
V
|
fn test_comptime_pkgconfig() {
|
||
|
$if $pkgconfig('mysqlclient') {
|
||
|
assert true
|
||
|
return
|
||
|
} $else {
|
||
|
assert true
|
||
|
return
|
||
|
}
|
||
|
assert false
|
||
|
}
|