mirror of
https://github.com/fumiama/base16384-sycl.git
synced 2026-06-10 21:24:47 +08:00
init: project framework
This commit is contained in:
52
.vscode/c_cpp_properties.json
vendored
Normal file
52
.vscode/c_cpp_properties.json
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Win32",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**",
|
||||
"${config:oneapi.root.windows}/compiler/latest/include",
|
||||
"${config:oneapi.root.windows}/compiler/latest/include/sycl"
|
||||
],
|
||||
"defines": [
|
||||
"_DEBUG",
|
||||
"UNICODE",
|
||||
"_UNICODE",
|
||||
"__SYCL_DEVICE_ONLY__",
|
||||
"SYCL_LANGUAGE_VERSION=2020"
|
||||
],
|
||||
"windowsSdkVersion": "10.0.22621.0",
|
||||
"compilerPath": "${config:oneapi.root.windows}/compiler/latest/bin/icx.exe",
|
||||
"compilerArgs": [
|
||||
"-fsycl"
|
||||
],
|
||||
"cStandard": "c17",
|
||||
"cppStandard": "c++17",
|
||||
"intelliSenseMode": "windows-clang-x64",
|
||||
"configurationProvider": "ms-vscode.cmake-tools"
|
||||
},
|
||||
{
|
||||
"name": "Linux",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**",
|
||||
"${config:oneapi.root.linux}/compiler/latest/include",
|
||||
"${config:oneapi.root.linux}/compiler/latest/include/sycl",
|
||||
"/usr/include",
|
||||
"/usr/local/include"
|
||||
],
|
||||
"defines": [
|
||||
"_DEBUG",
|
||||
"__SYCL_DEVICE_ONLY__",
|
||||
"SYCL_LANGUAGE_VERSION=2020"
|
||||
],
|
||||
"compilerPath": "${config:oneapi.root.linux}/compiler/latest/bin/icpx",
|
||||
"compilerArgs": [
|
||||
"-fsycl"
|
||||
],
|
||||
"cStandard": "c17",
|
||||
"cppStandard": "c++17",
|
||||
"intelliSenseMode": "linux-gcc-x64",
|
||||
"configurationProvider": "ms-vscode.cmake-tools"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
Reference in New Issue
Block a user