blob: 87385011aa530bdbc95a5222aab117540479cb11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/* 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>
#include "cmStringAlgorithms.h"
#ifdef __CYGWIN__
# include <sys/cygwin.h>
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;
}
return cmTrimWhitespace(winpath_chars.data());
}
#else
std::string CMakeToWixPath(const std::string& path)
{
return path;
}
#endif
|