feature: introduce DRANG_PLATFORM_BUILD_SHARED option for shared library builds

This commit is contained in:
MechSlayer 2025-09-05 17:03:27 +02:00
parent 505539f1cd
commit e857d1a896
4 changed files with 16 additions and 14 deletions

View file

@ -50,7 +50,7 @@
"displayName": "x64 Debug Shared",
"inherits": "win64-debug",
"cacheVariables": {
"BUILD_SHARED_LIBS": "ON"
"DRANG_PLATFORM_BUILD_SHARED": "ON"
}
},
{
@ -70,7 +70,7 @@
"displayName": "x64 Release Shared",
"inherits": "win64-release",
"cacheVariables": {
"BUILD_SHARED_LIBS": "ON"
"DRANG_PLATFORM_BUILD_SHARED": "ON"
}
},
{
@ -90,7 +90,7 @@
"displayName": "x64 Debug Shared",
"inherits": "linux64-debug",
"cacheVariables": {
"BUILD_SHARED_LIBS": "ON"
"DRANG_PLATFORM_BUILD_SHARED": "ON"
}
},
{
@ -110,7 +110,7 @@
"displayName": "x64 Release Shared",
"inherits": "linux64-release",
"cacheVariables": {
"BUILD_SHARED_LIBS": "ON"
"DRANG_PLATFORM_BUILD_SHARED": "ON"
}
}
]