mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
Cygwin-built CMake now converts paths from Cygwin to Windows form (using cygpath -w) before they're passed to WiX. The Wix generator on Cygwin requires the libuuid-dev package when building CMake. However, the DLL it links to is installed by default as part of Cygwin's core libs, so it does not need to be distributed. If libuuid-dev isn't available, CMake is simply built without Wix support on Cygwin.
13 lines
354 B
C++
13 lines
354 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cmCMakeToWixPath_h
|
|
#define cmCMakeToWixPath_h
|
|
|
|
#include "cmConfigure.h" //IWYU pragma: keep
|
|
|
|
#include <string>
|
|
|
|
std::string CMakeToWixPath(const std::string& cygpath);
|
|
|
|
#endif // cmCMakeToWixPath_h
|