-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #507 from krasznaa/VSCodeIntegration-main-20231218
Better VSCode Integration, main branch (2023.12.18.)
- Loading branch information
Showing
5 changed files
with
105 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,6 @@ | |
*.exe | ||
*.out | ||
*.app | ||
|
||
# VSCode build output. | ||
out/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"files.associations": { | ||
"*.hip": "cpp", | ||
"*.sycl": "cpp", | ||
"*.ipp": "cpp" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
{ | ||
"version" : 3, | ||
"configurePresets": [ | ||
{ | ||
"name" : "base", | ||
"displayName" : "Base Configuration", | ||
"warnings": { | ||
"deprecated": true | ||
}, | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE" : "RelWithDebInfo", | ||
"TRACCC_BUILD_TESTING" : "TRUE", | ||
"TRACCC_BUILD_EXAMPLES" : "TRUE", | ||
"TRACCC_FAIL_ON_WARNINGS" : "TRUE", | ||
"TRACCC_USE_ROOT" : "FALSE" | ||
} | ||
}, | ||
{ | ||
"name" : "cuda", | ||
"displayName" : "CUDA Code Development", | ||
"inherits": ["base"], | ||
"cacheVariables": { | ||
"TRACCC_BUILD_CUDA" : "TRUE", | ||
"VECMEM_BUILD_CUDA_LIBRARY" : "TRUE" | ||
} | ||
}, | ||
{ | ||
"name" : "sycl", | ||
"displayName" : "SYCL Code Development", | ||
"inherits": ["base"], | ||
"cacheVariables": { | ||
"TRACCC_BUILD_SYCL" : "TRUE", | ||
"VECMEM_BUILD_SYCL_LIBRARY" : "TRUE" | ||
} | ||
}, | ||
{ | ||
"name" : "alpaka", | ||
"displayName" : "Alpaka Code Development", | ||
"inherits": ["cuda"], | ||
"cacheVariables": { | ||
"TRACCC_BUILD_ALPAKA" : "TRUE" | ||
} | ||
}, | ||
{ | ||
"name" : "kokkos", | ||
"displayName" : "Kokkos Code Development", | ||
"inherits": ["cuda"], | ||
"cacheVariables": { | ||
"TRACCC_BUILD_KOKKOS" : "TRUE" | ||
} | ||
}, | ||
{ | ||
"name" : "root", | ||
"displayName" : "ROOT Enabled Code Development", | ||
"inherits": ["base"], | ||
"cacheVariables": { | ||
"TRACCC_USE_ROOT" : "TRUE", | ||
"TRACCC_USE_SYSTEM_TBB" : "TRUE" | ||
} | ||
}, | ||
{ | ||
"name" : "array", | ||
"displayName" : "ARRAY Backended Code Development", | ||
"inherits": ["base"], | ||
"cacheVariables": { | ||
"TRACCC_ALGEBRA_PLUGINS" : "ARRAY" | ||
} | ||
}, | ||
{ | ||
"name" : "eigen", | ||
"displayName" : "EIGEN Backended Code Development", | ||
"inherits": ["base"], | ||
"cacheVariables": { | ||
"TRACCC_ALGEBRA_PLUGINS" : "EIGEN" | ||
} | ||
}, | ||
{ | ||
"name" : "default", | ||
"displayName": "Default Build Configuration", | ||
"inherits": ["root", "array"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters