diff options
author | David Cournapeau <cournape@gmail.com> | 2008-11-17 12:06:58 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-11-17 12:06:58 +0000 |
commit | 3a6c367a0f1cadd8d7d898e04bca148b64d85116 (patch) | |
tree | 2668081749df8f2681b275321fad122934352738 /numpy/distutils/mingw32ccompiler.py | |
parent | e81458d964f20b188b944da833551a8332614ff0 (diff) | |
download | numpy-3a6c367a0f1cadd8d7d898e04bca148b64d85116.tar.gz |
Generate the rc file for manifest embedding.
Diffstat (limited to 'numpy/distutils/mingw32ccompiler.py')
-rw-r--r-- | numpy/distutils/mingw32ccompiler.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py index 1e6ee9570..2633064cf 100644 --- a/numpy/distutils/mingw32ccompiler.py +++ b/numpy/distutils/mingw32ccompiler.py @@ -316,3 +316,8 @@ def manifest_name(config): root = configtest_name(config) exext = self.compiler.exe_extension return root + exect + ".manifest" + +def rc_name(config): + # Get configest name (including suffix) + root = configtest_name(config) + return root + ".rc" |