ENH: call convert to unix slashes for path and filepath entries
This commit is contained in:
parent
683c54b787
commit
26ecd7731d
|
@ -24,6 +24,11 @@ void cmakewizard::AskUser(const char* key, cmCacheManager::CacheEntry & entry)
|
||||||
if(entry)
|
if(entry)
|
||||||
{
|
{
|
||||||
entry->m_Value = buffer;
|
entry->m_Value = buffer;
|
||||||
|
if(entry->m_Type == cmCacheManager::PATH ||
|
||||||
|
entry->m_Type == cmCacheManager::FILEPATH)
|
||||||
|
{
|
||||||
|
cmSystemTools::ConvertToUnixSlashes(entry->m_Value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue