Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
234 changes: 226 additions & 8 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [ "Windows" ],
"hostOS": [
"Windows"
],
"intelliSenseMode": "windows-clang-x64"
}
}
Expand Down Expand Up @@ -66,7 +68,9 @@
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [ "Windows" ],
"hostOS": [
"Windows"
],
"intelliSenseMode": "windows-clang-x64"
}
}
Expand Down Expand Up @@ -101,7 +105,9 @@
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [ "Windows" ],
"hostOS": [
"Windows"
],
"intelliSenseMode": "windows-clang-x64"
}
}
Expand Down Expand Up @@ -136,7 +142,9 @@
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [ "Windows" ],
"hostOS": [
"Windows"
],
"intelliSenseMode": "windows-clang-x64"
}
}
Expand Down Expand Up @@ -167,7 +175,9 @@
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [ "Windows" ]
"hostOS": [
"Windows"
]
}
}
},
Expand Down Expand Up @@ -198,7 +208,9 @@
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [ "Windows" ]
"hostOS": [
"Windows"
]
}
}
},
Expand Down Expand Up @@ -231,7 +243,9 @@
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [ "Windows" ]
"hostOS": [
"Windows"
]
}
}
},
Expand Down Expand Up @@ -264,7 +278,211 @@
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [ "Windows" ]
"hostOS": [
"Windows"
]
}
}
},
{
"name": "x64-Clang-Debug-Linux",
"displayName": "x64 Clang Debug",
"description": "Sets Ninja generator, Clang compiler, x64 architecture, build and install directory, debug build type",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"architecture": {
"value": "x64",
"strategy": "external"
},
"environment": {
"CC": "clang",
"CXX": "clang++"
},
"toolchainFile": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-linux",
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"Ymir_ENABLE_IPO": "OFF",
"Ymir_ENABLE_DEV_ASSERTIONS": "ON",
"Ymir_AVX2": "ON",
"Ymir_ENABLE_UPDATE_CHECKS": "ON"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [
"Linux"
],
"intelliSenseMode": "linux-gcc-x64"
}
}
},
{
"name": "x64-Clang-Release-Linux",
"displayName": "x64 Clang Release",
"description": "Sets Ninja generator, Clang compiler, x64 architecture, build and install directory, release build type",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"architecture": {
"value": "x64",
"strategy": "external"
},
"environment": {
"CC": "clang",
"CXX": "clang++"
},
"toolchainFile": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-linux",
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"Ymir_ENABLE_IPO": "OFF",
"Ymir_ENABLE_DEV_ASSERTIONS": "ON",
"Ymir_AVX2": "ON",
"Ymir_ENABLE_UPDATE_CHECKS": "ON"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [
"Linux"
],
"intelliSenseMode": "linux-gcc-x64"
}
}
},
{
"name": "x64-Clang-Debug-MacOS",
"displayName": "x64 Clang Debug",
"description": "Sets Ninja generator, Clang compiler, x64 architecture, build and install directory, debug build type",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"architecture": {
"value": "x64",
"strategy": "external"
},
"environment": {
"CC": "/usr/bin/clang",
"CXX": "/usr/bin/clang++"
},
"toolchainFile": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-osx",
"CMAKE_OSX_ARCHITECTURES": "x86_64",
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"Ymir_ENABLE_IPO": "OFF",
"Ymir_ENABLE_DEV_ASSERTIONS": "ON",
"Ymir_AVX2": "ON",
"Ymir_ENABLE_UPDATE_CHECKS": "ON"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [
"macOS"
],
"intelliSenseMode": "ios-clang-x64"
}
}
},
{
"name": "x64-Clang-Release-MacOS",
"displayName": "x64 Clang Release",
"description": "Sets Ninja generator, Clang compiler, x64 architecture, build and install directory, release build type",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"architecture": {
"value": "x64",
"strategy": "external"
},
"environment": {
"CC": "/usr/bin/clang",
"CXX": "/usr/bin/clang++"
},
"toolchainFile": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-osx",
"CMAKE_OSX_ARCHITECTURES": "x86_64",
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"Ymir_ENABLE_IPO": "OFF",
"Ymir_ENABLE_DEV_ASSERTIONS": "ON",
"Ymir_AVX2": "ON",
"Ymir_ENABLE_UPDATE_CHECKS": "ON"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [
"macOS"
],
"intelliSenseMode": "ios-clang-x64"
}
}
},
{
"name": "a64-Clang-Debug-MacOS",
"displayName": "arm64 Clang Debug",
"description": "Sets Ninja generator, Clang compiler, arm64 architecture, build and install directory, debug build type",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"architecture": {
"value": "arm64",
"strategy": "external"
},
"environment": {
"CC": "/usr/bin/clang",
"CXX": "/usr/bin/clang++"
},
"toolchainFile": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "arm64-osx",
"CMAKE_OSX_ARCHITECTURES": "arm64",
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"Ymir_ENABLE_IPO": "OFF",
"Ymir_ENABLE_DEV_ASSERTIONS": "ON",
"Ymir_AVX2": "OFF",
"Ymir_ENABLE_UPDATE_CHECKS": "ON"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [
"macOS"
],
"intelliSenseMode": "ios-clang-arm64"
}
}
},
{
"name": "a64-Clang-Release-MacOS",
"displayName": "arm64 Clang Release",
"description": "Sets Ninja generator, Clang compiler, arm64 architecture, build and install directory, reset build type",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"architecture": {
"value": "arm64",
"strategy": "external"
},
"environment": {
"CC": "/usr/bin/clang",
"CXX": "/usr/bin/clang++"
},
"toolchainFile": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "arm64-osx",
"CMAKE_OSX_ARCHITECTURES": "arm64",
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"Ymir_ENABLE_IPO": "OFF",
"Ymir_ENABLE_DEV_ASSERTIONS": "ON",
"Ymir_AVX2": "OFF",
"Ymir_ENABLE_UPDATE_CHECKS": "ON"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [
"macOS"
],
"intelliSenseMode": "ios-clang-arm64"
}
}
}
Expand Down