diff options
author | rtk0c <[email protected]> | 2022-06-27 15:38:39 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-06-27 15:38:39 -0700 |
commit | 57cf43ce090d1053c7dc82daf2e39e735ab7f270 (patch) | |
tree | 286e5c93a9225dd33d2928743fb8a449e7da9bdf /CMakePresets.json | |
parent | 34ce98e9e7d8fcbf0ceeb7504a8132ece62871d3 (diff) |
Add CMakePresets.json
Diffstat (limited to 'CMakePresets.json')
-rw-r--r-- | CMakePresets.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/CMakePresets.json b/CMakePresets.json new file mode 100644 index 0000000..1af56be --- /dev/null +++ b/CMakePresets.json @@ -0,0 +1,23 @@ +{ + "version": 3, + "configurePresets": [ + { + "name": "default", + "generator": "Ninja", + "cacheVariables": { + "CONAN_DISABLE_CHECK_COMPILER": { + "type": "BOOL", + "value": true + }, + "CMAKE_C_FLAGS": { + "type": "STRING", + "value": "-fuse-ld=mold" + }, + "CMAKE_CXX_FLAGS": { + "type": "STRING", + "value": "-fuse-ld=mold" + } + } + } + ] +}
\ No newline at end of file |