vpc: Fix SSE4.2/AVX2 leaking into other builds
continuous-integration/drone/push Build is passing Details

Closes: #138
Closes: #182
This commit is contained in:
Joshua Ashton 2023-08-01 02:58:35 -07:00
parent 8ebdc6b77f
commit 50cef39716
3 changed files with 8 additions and 2 deletions

View File

@ -6,6 +6,8 @@
$Macro PROJNAME "vphysics_jolt_avx2"
$Conditional VOLT_SSE2 "0"
$Conditional VOLT_SSE42 "0"
$Conditional VOLT_AVX2 "1"
$Macro VOLTARCH "AVX2"

View File

@ -6,7 +6,9 @@
$Macro PROJNAME "vphysics_jolt_sse2"
$Conditional VOLT_SSE2 "1"
$Conditional VOLT_SSE2 "1"
$Conditional VOLT_SSE42 "0"
$Conditional VOLT_AVX2 "0"
$Macro VOLTARCH "SSE2"
$Include "vphysics_jolt_inc.vpc"

View File

@ -6,7 +6,9 @@
$Macro PROJNAME "vphysics_jolt_sse42"
$Conditional VOLT_SSE42 "1"
$Conditional VOLT_SSE2 "0"
$Conditional VOLT_SSE42 "1"
$Conditional VOLT_AVX2 "0"
$Macro VOLTARCH "SSE42"
$Include "vphysics_jolt_inc.vpc"