]> git.lyx.org Git - features.git/commitdiff
Scons: set default qt lib directory under cygwin
authorBo Peng <bpeng@lyx.org>
Sun, 2 Jul 2006 01:54:44 +0000 (01:54 +0000)
committerBo Peng <bpeng@lyx.org>
Sun, 2 Jul 2006 01:54:44 +0000 (01:54 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14286 a592a061-630c-0410-9148-cb99ea01b6c8

development/scons/SConstruct

index 640510cf2103f05862d92561c5045e24146d2ab8..82201b312beefa3da0a2e6ab5c03f4bb1f57778a 100644 (file)
@@ -547,8 +547,14 @@ else:
 
 if env.has_key('qt_lib_path') and env['qt_lib_path']:
     qt_lib_path = env.subst('$qt_lib_path')
-else:
+elif os.path.isdir(os.path.join(env.subst('$QTDIR'), 'lib')):
     qt_lib_path = env.subst('$QTDIR/lib')
+# this is the path for cygwin.
+elif os.path.idsir(os.path.join('/usr/lib/', frontend, 'lib')):
+    qt_lib_path = env.subst('/usr/lib/$frontend/lib')
+else:
+    print "Qt library directory is not found. Please specify it using qt_lib_path"
+    Exit(1)
 env.AppendUnique(LIBPATH = [qt_lib_path])
 # qt4 seems to be using pkg_config
 env.PrependENVPath('PKG_CONFIG_PATH', qt_lib_path)