mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-15 10:08:35 +05:00
Implementation of the "20494: EDF 1123 KERNEL/GUI : Improvment of 'About' dialog box" issue.
This commit is contained in:
parent
15cea5126f
commit
28c48d7e24
@ -467,6 +467,7 @@ AC_OUTPUT([ \
|
||||
src/VTKExport/Makefile \
|
||||
resources/Makefile \
|
||||
resources/GEOMCatalog.xml \
|
||||
resources/SalomeApp.xml \
|
||||
idl/Makefile \
|
||||
Makefile \
|
||||
])
|
||||
|
@ -28,7 +28,7 @@ dist_salomeres_DATA = \
|
||||
GEOM_en.xml \
|
||||
GEOM_fr.xml \
|
||||
GEOM.config \
|
||||
SalomeApp.xml \
|
||||
$(top_builddir)/resources/SalomeApp.xml \
|
||||
Plugin \
|
||||
GEOMDS_Resources \
|
||||
ImportExport \
|
||||
|
@ -27,6 +27,7 @@
|
||||
<parameter name="name" value="Geometry"/>
|
||||
<parameter name="icon" value="ModuleGeom.png"/>
|
||||
<parameter name="documentation" value="geom_help"/>
|
||||
<parameter name="GEOM_VERSION" value="@VERSION@"/>
|
||||
</section>
|
||||
<section name="geom_help" >
|
||||
<parameter name="sub_menu" value="%1 module"/>
|
@ -98,12 +98,19 @@
|
||||
#include <vtkCamera.h>
|
||||
#include <vtkRenderer.h>
|
||||
|
||||
#include <GEOM_version.h>
|
||||
|
||||
|
||||
#include "GEOMImpl_Types.hxx"
|
||||
|
||||
extern "C" {
|
||||
Standard_EXPORT CAM_Module* createModule() {
|
||||
return new GeometryGUI();
|
||||
}
|
||||
|
||||
Standard_EXPORT char* getModuleVersion() {
|
||||
return GEOM_VERSION_STR;
|
||||
}
|
||||
}
|
||||
|
||||
GeometryGUI::StudyTextureMap GeometryGUI::myTextureMap;
|
||||
|
@ -75,7 +75,8 @@ libGEOM_la_CPPFLAGS = \
|
||||
-I$(srcdir)/../GEOMFiltersSelection \
|
||||
-I$(srcdir)/../GEOMClient \
|
||||
-I$(srcdir)/../GEOMImpl \
|
||||
-I$(top_builddir)/idl
|
||||
-I$(top_builddir)/idl \
|
||||
-I$(top_builddir)
|
||||
|
||||
libGEOM_la_LDFLAGS = \
|
||||
$(PYTHON_LIBS) \
|
||||
|
Loading…
Reference in New Issue
Block a user