#!@PYTHON@ from optparse import OptionParser import sys, platform #--------------------- # This file is generated automatically by SCons and installed in at INSTALL_BIN. # Use it to query for local configuration of ASCEND on your system for example # when building external 'plugins' such as external computations and external # solvers etc. # # It's written in python since (because of SCons) we know we have Python on # this system already but we don't know that about unix shell (eg on Windows). # # Note that SCons supports reading of the output from this script, using # features offered since version 0.96.91, although this functionality # is a bit problematic on the Windows platform, and/or when paths contain spaces. # # This file inspired by other software that uses the same approach, eg # ginac-config, xft-config, cppunit-config. # # Type ascend-config --help for usage. #--------------------- if platform.system()=="Windows": import _winreg x=_winreg.ConnectRegistry(None,_winreg.HKEY_LOCAL_MACHINE) y= _winreg.OpenKey(x,r"SOFTWARE\ASCEND") LIB,t = _winreg.QueryValueEx(y,"INSTALL_LIB") BIN,t = _winreg.QueryValueEx(y,"INSTALL_BIN") INCLUDE,t = _winreg.QueryValueEx(y,"INSTALL_INCLUDE") ASCDATA,t = _winreg.QueryValueEx(y,"INSTALL_ASCDATA") MODELS,t = _winreg.QueryValueEx(y,"INSTALL_MODELS") _winreg.CloseKey(y) _winreg.CloseKey(x) else: # If we're not in Windows, use the original values passed to us from SCons: LIB="@INSTALL_LIB@" BIN="@INSTALL_BIN@" INCLUDE="@INSTALL_INCLUDE@" ASCDATA="@INSTALL_ASCDATA@" MODELS="@INSTALL_MODELS@" usage = "usage: %prog [--help,...]" # the rest of this script is about returning those values in the standard way parser = OptionParser(usage=usage, version="@VERSION@") parser.add_option("--libs", action="store_true", dest="libs", help="show linker flags (for ASCEND libraries)") parser.add_option("--cppflags", action="store_true", dest="cppflags", help="show C pre-processor flags (for ASCEND header files)") parser.add_option("--data", action="store_true", dest="data", help="show location of ASCEND data files") parser.add_option("--models", action="store_true", dest="models", help="show location of ASCEND model library") (options, args) = parser.parse_args() ok = False if options.cppflags: include = "" if INCLUDE!="/usr/include": include=INCLUDE if -1!=include.find(" "): print "-I\""+include+"\"" else: print "-L"+libs+" -lascend" ok = True if options.libs: libs = "" if LIB!="/usr/lib": libs = LIB if -1!=libs.find(" "): print "-L\""+libs+"\" -lascend" else: print "-L"+libs+" -lascend" ok = True if options.data: print ASCDATA ok = True if options.models: print MODELS ok = True if not ok: sys.stderr.write("invalid option '%s' (use --help for more info)\n" % args) sys.exit(1)