diff options
Diffstat (limited to 'servergreps/hercules/src/preproc.py')
-rwxr-xr-x | servergreps/hercules/src/preproc.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/servergreps/hercules/src/preproc.py b/servergreps/hercules/src/preproc.py deleted file mode 100755 index 4f3b458..0000000 --- a/servergreps/hercules/src/preproc.py +++ /dev/null @@ -1,24 +0,0 @@ -#! /usr/bin/env python2 -# -*- coding: utf8 -*- -# -# Copyright (C) 2015-2016 Evol Online -# Author: Andrei Karas (4144) - -import os -import shutil - -class PreProc: - def init(self, tmpDir): - if os.path.exists(tmpDir): - shutil.rmtree(tmpDir) - os.makedirs(tmpDir) - - - def run(self, subDir, outFile): - os.system( - "cpp {defines} {includes} {subDir}/{inFile} {outFile}".format( - defines = self.defines, - includes = self.includes, - subDir = self.inDir + subDir, - inFile = outFile, - outFile = self.outDir + outFile)) |