Add flag to say if pvd is supported

This commit is contained in:
bloeys
2022-12-07 06:38:33 +04:00
parent dd5a42c760
commit 96c55ad30d
3 changed files with 12 additions and 4 deletions

5
pgo/consts_checked.go Executable file
View File

@ -0,0 +1,5 @@
//go:build !physx_release
package pgo
const PvdSupported = true

5
pgo/consts_release.go Executable file
View File

@ -0,0 +1,5 @@
//go:build physx_release
package pgo
const PvdSupported = false