Skip to content

Commit

Permalink
Reformat CMakeSettings.json and remove empty variables (cemu-project#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zopolis4 authored Aug 24, 2022
1 parent 5ae3c56 commit c41d57c
Showing 1 changed file with 11 additions and 19 deletions.
30 changes: 11 additions & 19 deletions CMakeSettings.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,29 @@
{
"configurations": [
{
"name": "x64-Debug",
"name": "Release",
"configurationType": "RelWithDebInfo",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": ""
"installRoot": "${projectDir}\\out\\install\\${name}"
},
{
"name": "x64-Release",
"generator": "Ninja",
"name": "Public Release",
"configurationType": "RelWithDebInfo",
"generator": "Ninja",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ]
"cmakeCommandArgs": "-DPUBLIC_RELEASE=ON"
},
{
"name": "x64-Public-Release",
"name": "Debug",
"configurationType": "Debug",
"generator": "Ninja",
"configurationType": "RelWithDebInfo",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "-DPUBLIC_RELEASE=ON",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ]
"installRoot": "${projectDir}\\out\\install\\${name}"
}
]
}

0 comments on commit c41d57c

Please sign in to comment.