build_depend : ["cmake", "swig", "doxygen", "cppunit"]
}
+version_V9_3_0_win :
+{
+ depend : ["KERNEL",
+ "Python",
+ "qt",
+ "sip",
+ "PyQt",
+ "boost",
+ "CAS",
+ "qwt",
+ "hdf5",
+ "freetype",
+ "freeimage",
+ "gl2ps",
+ "ParaView",
+ "omniORB",
+ "docutils",
+ "libxml2",
+ "sphinxintl",
+ "sphinxcontrib_websupport",
+ "sphinxcontrib_applehelp",
+ "sphinxcontrib_serializinghtml",
+ "sphinxcontrib_napoleon"
+ ]
+ build_depend : ["cmake", "swig", "doxygen", "cppunit"]
+ patches : ['GUI-V9_3_0-LightApplication_windows.patch']
+}
+
# OP 19/04/2018 Add section for SALOME 7.8.0 to 8.4.0 due to new dependencies in SALOME 8.5.0
version_7_8_0_to_8_4_0 :
{
--- /dev/null
+diff --git a/src/LightApp/LightApp_Application.cxx b/src/LightApp/LightApp_Application.cxx
+index f33201e5b..7586e48aa 100644
+--- a/src/LightApp/LightApp_Application.cxx
++++ b/src/LightApp/LightApp_Application.cxx
+@@ -3997,7 +3997,12 @@ bool LightApp_Application::checkModule( const QString& title )
+ if ( isPyModule )
+ {
+ QString pyModule = QString( "%1GUI.py" ).arg( name );
+- paths = QString( ::getenv( "PYTHONPATH" ) ).split( ":", QString::SkipEmptyParts );
++
++#if defined(WIN32)
++ paths = QString( Qtx::getenv( "PYTHONPATH" ) ).split( ";", QString::SkipEmptyParts );
++#else
++ paths = QString( Qtx::getenv( "PYTHONPATH" ) ).split( ":", QString::SkipEmptyParts );
++#endif
+
+ isFound = false;
+ for ( it = paths.begin(); it != paths.end() && !isFound; ++it )