| 186 | |
| 187 | |
| 188 | static void makeConditionalVariable(std::ostream &os, const std::string &variable, const std::string &defaultValue) |
| 189 | { |
| 190 | os << "ifndef " << variable << '\n' |
| 191 | << " " << variable << '=' << defaultValue << '\n' |
| 192 | << "endif\n" |
| 193 | << "\n"; |
| 194 | } |
| 195 | |
| 196 | static int write_vcxproj(const std::string &proj_name, const std::function<void(std::string&)> &source_f, const std::function<void(std::string&)> &header_f) |
| 197 | { |