Added a installation script for the cppcheck-htmlreport utility.

The script uses distutils to install the script into /usr/bin/.
The following will install the script:
   sudo ./setup.py install
This commit is contained in:
Henrik Nilsson 2009-12-15 09:03:15 +01:00
parent 89b2118622
commit f1ad308f5f
1 changed files with 10 additions and 0 deletions

10
htmlreport/setup.py Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/python
from distutils.core import setup
if __name__ == '__main__':
setup(
name="cppcheck",
scripts=[
"cppcheck-htmlreport",
]
)