File indexing completed on 2024-04-21 14:55:20

0001 # FindSIP.py
0002 #
0003 # Copyright (c) 2007, Simon Edwards <simon@simonzone.com>
0004 # Redistribution and use is allowed according to the terms of the BSD license.
0005 # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
0006 
0007 import sys
0008 import sipconfig
0009 
0010 sipcfg = sipconfig.Configuration()
0011 print("sip_version:%06.0x" % sipcfg.sip_version)
0012 print("sip_version_str:%s" % sipcfg.sip_version_str)
0013 print("sip_bin:%s" % sipcfg.sip_bin)
0014 print("default_sip_dir:%s" % sipcfg.default_sip_dir)
0015 print("sip_inc_dir:%s" % sipcfg.sip_inc_dir)