diff options
author | yzh <yaozihao5606@outlook.com> | 2024-02-13 15:20:13 +0800 |
---|---|---|
committer | yzh <yaozihao5606@outlook.com> | 2024-02-13 15:20:13 +0800 |
commit | 29dcec6afef07751b833ff9d4b85260daa359cad (patch) | |
tree | 75dfce5eb0f9abbbcc11e944590f5f3ebcf052f0 | |
parent | 4e331c54048ba8dfbc2bc05d85fcc9b517f5fea7 (diff) |
update CmakeSettings
-rw-r--r-- | source/CMakeSettings.json | 46 |
1 files changed, 22 insertions, 24 deletions
diff --git a/source/CMakeSettings.json b/source/CMakeSettings.json index d9c6622..51a5249 100644 --- a/source/CMakeSettings.json +++ b/source/CMakeSettings.json @@ -1,36 +1,34 @@ { "configurations": [ { - "name": "x64-RelWithDebInfo", + "name": "x64-RelWithAsserts", "generator": "Visual Studio 17 2022 Win64", - "configurationType": "RelWithDebInfo", + "configurationType": "RelWithAsserts", "inheritEnvironments": [ "msvc_x64_x64" ], "buildRoot": "${projectDir}\\..\\build\\${name}", "installRoot": "${projectDir}\\..\\dist\\install\\${name}", "cmakeCommandArgs": "-DCMAKE_INCLUDE_PATH=\"..\\lib\\windows\\include\" -DCMAKE_LIBRARY_PATH=\"..\\lib\\windows\"", - "variables": [ - { - "name": "STAR_ENABLE_STEAM_INTEGRATION", - "value": "True", - "type": "BOOL" - }, - { - "name": "STAR_ENABLE_DISCORD_INTEGRATION", - "value": "True", - "type": "BOOL" - }, - { - "name": "STAR_USE_JEMALLOC", - "value": "True", - "type": "BOOL" - }, - { - "name": "CMAKE_CONFIGURATION_TYPES", - "value": "RelWithAsserts", - "type": "STRING" - } - ], "cmakeExecutable": "C:/Program Files/CMake/bin/cmake.exe" + }, + { + "name": "x64-Debug", + "generator": "Visual Studio 17 2022 Win64", + "configurationType": "Debug", + "buildRoot": "${projectDir}\\..\\build\\${name}", + "installRoot": "${projectDir}\\..\\dist\\install\\${name}", + "cmakeExecutable": "C:/Program Files/CMake/bin/cmake.exe", + "cmakeCommandArgs": "-DCMAKE_INCLUDE_PATH=\"..\\lib\\windows\\include\" -DCMAKE_LIBRARY_PATH=\"..\\lib\\windows\"", + "inheritEnvironments": [ "msvc_x64_x64" ] + }, + { + "name": "x64-RelWithDebInfo", + "generator": "Visual Studio 17 2022 Win64", + "configurationType": "RelWithDebInfo", + "buildRoot": "${projectDir}\\..\\build\\${name}", + "installRoot": "${projectDir}\\..\\dist\\install\\${name}", + "cmakeExecutable": "C:/Program Files/CMake/bin/cmake.exe", + "cmakeCommandArgs": "-DCMAKE_INCLUDE_PATH=\"..\\lib\\windows\\include\" -DCMAKE_LIBRARY_PATH=\"..\\lib\\windows\"", + "inheritEnvironments": [ "msvc_x64_x64" ] } ] }
\ No newline at end of file |