Add initial support for python bindings
[alexxy/gromacs.git] / src / pygromacs / cmake / modules / FindSIP.py
1 # FindSIP.py
2 #
3 # Copyright (c) 2007, Simon Edwards <simon@simonzone.com>
4 # Redistribution and use is allowed according to the terms of the BSD license.
5 # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
6
7 import sys
8 import sipconfig
9
10 sipcfg = sipconfig.Configuration()
11 print("sip_version:%06.0x" % sipcfg.sip_version)
12 print("sip_version_str:%s" % sipcfg.sip_version_str)
13 print("sip_bin:%s" % sipcfg.sip_bin)
14 print("default_sip_dir:%s" % sipcfg.default_sip_dir)
15 print("sip_inc_dir:%s" % sipcfg.sip_inc_dir)
16