Improved makefile and nethost structure

This commit is contained in:
Simon Lübeß
2022-04-14 13:39:25 +02:00
parent 6a250d4927
commit 8e46945362
16 changed files with 975 additions and 12 deletions
+8 -4
View File
@@ -26,7 +26,8 @@
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
"CMAKE_BUILD_TYPE": "Debug",
"TARGET_ARCH": "amd64"
}
},
{
@@ -34,7 +35,8 @@
"displayName": "x64 Release",
"inherits": "x64-debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
"CMAKE_BUILD_TYPE": "Release",
"TARGET_ARCH": "amd64"
}
},
{
@@ -46,7 +48,8 @@
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
"CMAKE_BUILD_TYPE": "Debug",
"TARGET_ARCH": "x86"
}
},
{
@@ -54,7 +57,8 @@
"displayName": "x86 Release",
"inherits": "x86-debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
"CMAKE_BUILD_TYPE": "Release",
"TARGET_ARCH": "x86"
}
}
]