cmake/Source/CPack/WiX/cmCMakeToWixPath.cxx

40 lines
983 B
C++
Raw Normal View History

2018-04-23 21:13:27 +02:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmCMakeToWixPath.h"
#include <string>
#include <vector>
2020-02-01 23:06:01 +01:00
#include "cmStringAlgorithms.h"
2018-04-23 21:13:27 +02:00
#ifdef __CYGWIN__
2018-08-09 18:06:22 +02:00
# include <sys/cygwin.h>
2018-04-23 21:13:27 +02:00
std::string CMakeToWixPath(const std::string& cygpath)
{
std::vector<char> winpath_chars;
ssize_t winpath_size;
// Get the required buffer size.
winpath_size =
cygwin_conv_path(CCP_POSIX_TO_WIN_A, cygpath.c_str(), nullptr, 0);
if (winpath_size <= 0) {
return cygpath;
}
winpath_chars.assign(static_cast<size_t>(winpath_size) + 1, '\0');
winpath_size = cygwin_conv_path(CCP_POSIX_TO_WIN_A, cygpath.c_str(),
winpath_chars.data(), winpath_size);
if (winpath_size < 0) {
return cygpath;
}
2020-02-01 23:06:01 +01:00
return cmTrimWhitespace(winpath_chars.data());
2018-04-23 21:13:27 +02:00
}
#else
std::string CMakeToWixPath(const std::string& path)
{
return path;
}
#endif