Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .clangd
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ InlayHints:
TypeNameLimit: 24

Hover:
ShowAKA: Yes
ShowAKA: No

Diagnostics:
UnusedIncludes: Strict
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ project(
LANGUAGES CXX
)

include(GNUInstallDirs)
include(cmake/CompilerWarnings.cmake)
include(cmake/LinkerFlags.cmake)

Expand Down
2 changes: 0 additions & 2 deletions cmake/Platform/Linux/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"configurePresets": [
{
"name": "linux-ninja-gcc",
"displayName": "Linux Ninja Generator + GCC",
"description": "Configure Linux to use the Ninja generator and the GCC compiler",
"binaryDir": "${sourceDir}/build/linux_ninja_gcc",
"inherits": [
Expand All @@ -24,7 +23,6 @@
},
{
"name": "linux-ninja-clang",
"displayName": "Linux Ninja Generator + Clang++",
"description": "Configure Linux to use the Ninja generator and the Clang++ compiler",
"binaryDir": "${sourceDir}/build/linux_ninja_clang",
"inherits": [
Expand Down
2 changes: 0 additions & 2 deletions cmake/Platform/Mac/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"configurePresets": [
{
"name": "mac-ninja-clang",
"displayName": "Mac Ninja Generator + Clang++",
"description": "Configure Mac to use the Ninja generator and the Clang++ compiler",
"binaryDir": "${sourceDir}/build/mac_ninja_clang",
"inherits": [
Expand All @@ -24,7 +23,6 @@
},
{
"name": "mac-xcode-clang",
"displayName": "Mac Xcode Generator + Clang++",
"description": "Configure Mac to use the Xcode generator and the Clang++ compiler",
"binaryDir": "${sourceDir}/build/mac_xcode_clang",
"inherits": [
Expand Down
4 changes: 0 additions & 4 deletions cmake/Platform/Windows/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"configurePresets": [
{
"name": "windows-vs2022",
"displayName": "Windows Visual Studio 2022 Generator + MSVC",
"description": "Configure Windows to use the VS2022 generator",
"binaryDir": "${sourceDir}/build/windows_vs2022_msvc",
"inherits": [
Expand All @@ -32,7 +31,6 @@
},
{
"name": "windows-vs2022-clangcl",
"displayName": "Windows Visual Studio 2022 Generator + ClangCL",
"description": "Configure Windows to use the VS2022 generator and the ClangCL compiler",
"binaryDir": "${sourceDir}/build/windows_vs2022_clangcl",
"inherits": [
Expand All @@ -53,7 +51,6 @@
},
{
"name": "windows-ninja",
"displayName": "Windows Ninja Generator + MSVC",
"description": "Configure Windows using the Ninja generator",
"binaryDir": "${sourceDir}/build/windows_ninja_msvc",
"inherits": [
Expand All @@ -74,7 +71,6 @@
},
{
"name": "windows-ninja-clangcl",
"displayName": "Windows Ninja Generator + ClangCL",
"description": "Configure Windows using the Ninja generator and the ClangCL compiler",
"binaryDir": "${sourceDir}/build/windows_ninja_clangcl",
"inherits": [
Expand Down
Loading