You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After Making change in GUI, editing the CMake configuration using "Edit CMake Cache (UI)" and saving the changes,
value of "CMAKE_GENERATOR_TOOLSET:INTERNAL" in cache file will end up with prefixing the "host=" to already existing value.
Ex:
CMAKE_GENERATOR_TOOLSET:INTERNAL=host=x86
if above value is already present, I make the change in CMakeCache using Edit CMake Cache(UI) option and saving it will result in below statement in CMake cache file
CMAKE_GENERATOR_TOOLSET:INTERNAL=host=host=x86.
This will result in the error while configuring the project like below:
[cmake] CMake Error: Error: generator toolset: host=x86
[cmake] Does not match the toolset used previously: host=host=x86
I had to manually edit the CMakeCache file again, to have the correct value and configure again.
Expected:
it should should prefix the value on every Save!
The text was updated successfully, but these errors were encountered:
Brief Issue Summary
After Making change in GUI, editing the CMake configuration using "Edit CMake Cache (UI)" and saving the changes,
value of "CMAKE_GENERATOR_TOOLSET:INTERNAL" in cache file will end up with prefixing the "host=" to already existing value.
Ex:
CMAKE_GENERATOR_TOOLSET:INTERNAL=host=x86
if above value is already present, I make the change in CMakeCache using Edit CMake Cache(UI) option and saving it will result in below statement in CMake cache file
CMAKE_GENERATOR_TOOLSET:INTERNAL=host=host=x86.
This will result in the error while configuring the project like below:
[cmake] CMake Error: Error: generator toolset: host=x86
[cmake] Does not match the toolset used previously: host=host=x86
I had to manually edit the CMakeCache file again, to have the correct value and configure again.
Expected:
it should should prefix the value on every Save!
The text was updated successfully, but these errors were encountered: