Fixed names of some executable scripts
Also added shebang line to ctml_writer
This commit is contained in:
parent
8b497e2e97
commit
96114edb46
2 changed files with 8 additions and 2 deletions
|
|
@ -997,8 +997,12 @@ if 'install' in COMMAND_LINE_TARGETS:
|
||||||
install('$inst_datadir', mglob(env, pjoin('data','inputs'), 'cti', 'xml'))
|
install('$inst_datadir', mglob(env, pjoin('data','inputs'), 'cti', 'xml'))
|
||||||
|
|
||||||
# Converter scripts
|
# Converter scripts
|
||||||
install('$inst_bindir', 'interfaces/python/ck2cti.py')
|
install(env.InstallAs,
|
||||||
install('$inst_bindir', 'interfaces/python/ctml_writer.py')
|
pjoin('$inst_bindir','ck2cti2'),
|
||||||
|
'interfaces/python/ck2cti.py')
|
||||||
|
install(env.InstallAs,
|
||||||
|
pjoin('$inst_bindir','ctml_writer'),
|
||||||
|
'interfaces/python/ctml_writer.py')
|
||||||
|
|
||||||
### List of libraries needed to link to Cantera ###
|
### List of libraries needed to link to Cantera ###
|
||||||
linkLibs = ['cantera']
|
linkLibs = ['cantera']
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
##
|
##
|
||||||
# @file ctml_writer.py
|
# @file ctml_writer.py
|
||||||
#
|
#
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue