beard%netscape.com 1acd7e19ec [Not part of build] Simple tool to emit information about the build system, to be consumed by the Perl build scripts.
git-svn-id: svn://10.0.0.236/trunk@66643 18797224-902f-48f8-a5cc-f745e15eee43
2000-04-21 01:51:07 +00:00

13 lines
288 B
C++

#include <stdio.h>
#include <ConditionalMacros.h>
int main(int argc, char* argv[])
{
FILE* file = fopen("BuildSystemInfo.pm", "w");
if (file != NULL) {
fprintf(file, "$UNIVERSAL_INTERFACES_VERSION=0x%04X;\n", UNIVERSAL_INTERFACES_VERSION);
fclose(file);
}
}