| 2073 | } |
| 2074 | |
| 2075 | Json::Value Target::DumpInstallPrefix() |
| 2076 | { |
| 2077 | Json::Value prefix = Json::objectValue; |
| 2078 | std::string p = |
| 2079 | this->GT->Makefile->GetSafeDefinition("CMAKE_INSTALL_PREFIX"); |
| 2080 | cmSystemTools::ConvertToUnixSlashes(p); |
| 2081 | prefix["path"] = p; |
| 2082 | return prefix; |
| 2083 | } |
| 2084 | |
| 2085 | Json::Value Target::DumpInstallDestinations() |
| 2086 | { |