-
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.
This commit introduces the new memspecs featured in tukl-msd/DRAMUtils. --------- Co-authored-by: marcomoerz <[email protected]> Co-authored-by: Thomas Psota <[email protected]>
- Loading branch information
1 parent
00081dd
commit 5ed2d6e
Showing
128 changed files
with
2,525 additions
and
2,202 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
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,77 @@ | ||
{ | ||
"version": 3, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 14, | ||
"patch": 0 | ||
}, | ||
"configurePresets": [ | ||
{ | ||
"name": "cmake-pedantic", | ||
"hidden": true, | ||
"warnings": { | ||
"dev": true, | ||
"deprecated": true, | ||
"unusedCli": true, | ||
"systemVars": false | ||
} | ||
}, | ||
{ | ||
"name": "dev-mode", | ||
"hidden": true, | ||
"inherits": "cmake-pedantic", | ||
"cacheVariables": { | ||
"DRAMPOWER_BUILD_TESTS": "ON", | ||
"CMAKE_BUILD_PARALLEL_LEVEL": "" | ||
} | ||
}, | ||
{ | ||
"name": "ci-common", | ||
"binaryDir": "${sourceDir}/build", | ||
"inherits": [ | ||
"dev-mode" | ||
], | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Release" | ||
} | ||
}, | ||
{ | ||
"name": "ci-unix", | ||
"generator": "Unix Makefiles", | ||
"inherits": [ | ||
"ci-common" | ||
] | ||
}, | ||
{ | ||
"name": "ci-msvc", | ||
"generator": "Visual Studio 17 2022", | ||
"inherits": [ | ||
"ci-common" | ||
], | ||
"cacheVariables": { | ||
"CMAKE_CXX_FLAGS": "/DWIN32 /D_WINDOWS /W3 /GR /EHsc /MP" | ||
} | ||
}, | ||
{ | ||
"name": "dev-unix", | ||
"generator": "Unix Makefiles", | ||
"inherits": [ | ||
"dev-mode" | ||
], | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug", | ||
"CMAKE_CXX_FLAGS": "-Wall -Wextra -Wpedantic" | ||
} | ||
}, | ||
{ | ||
"name": "dev-msvc", | ||
"generator": "Visual Studio 17 2022", | ||
"inherits": [ | ||
"dev-mode" | ||
], | ||
"cacheVariables": { | ||
"CMAKE_CXX_FLAGS": "/DWIN32 /D_WINDOWS /W3 /GR /EHsc /MP" | ||
} | ||
} | ||
] | ||
} |
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
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
Oops, something went wrong.