mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-04 22:04:17 +05:00
replace files in their respective rep
This commit is contained in:
parent
f6f19e7452
commit
1a5fa0f4c0
@ -21,6 +21,7 @@
|
|||||||
# additional include directories
|
# additional include directories
|
||||||
INCLUDE_DIRECTORIES(
|
INCLUDE_DIRECTORIES(
|
||||||
${KERNEL_INCLUDE_DIRS}
|
${KERNEL_INCLUDE_DIRS}
|
||||||
|
${MEDCOUPLING_INCLUDE_DIRS}
|
||||||
)
|
)
|
||||||
|
|
||||||
# additional preprocessor / compiler flags
|
# additional preprocessor / compiler flags
|
||||||
@ -31,6 +32,7 @@ ADD_DEFINITIONS(
|
|||||||
# libraries to link to
|
# libraries to link to
|
||||||
SET(_link_LIBRARIES
|
SET(_link_LIBRARIES
|
||||||
${KERNEL_SALOMELocalTrace}
|
${KERNEL_SALOMELocalTrace}
|
||||||
|
${MEDCoupling_medloader}
|
||||||
)
|
)
|
||||||
|
|
||||||
# --- headers ---
|
# --- headers ---
|
||||||
@ -48,6 +50,7 @@ SET(ADAPTImpl_HEADERS
|
|||||||
HOMARD_YACS.hxx
|
HOMARD_YACS.hxx
|
||||||
HomardDriver.hxx
|
HomardDriver.hxx
|
||||||
YACSDriver.hxx
|
YACSDriver.hxx
|
||||||
|
MG_ADAPT.hxx
|
||||||
)
|
)
|
||||||
|
|
||||||
# --- sources ---
|
# --- sources ---
|
||||||
@ -64,6 +67,7 @@ SET(ADAPTImpl_SOURCES
|
|||||||
HOMARD_YACS.cxx
|
HOMARD_YACS.cxx
|
||||||
HomardDriver.cxx
|
HomardDriver.cxx
|
||||||
YACSDriver.cxx
|
YACSDriver.cxx
|
||||||
|
MG_ADAPT.cxx
|
||||||
)
|
)
|
||||||
|
|
||||||
# --- rules ---
|
# --- rules ---
|
||||||
|
@ -161,28 +161,28 @@ public:
|
|||||||
void setUseLocalMap(bool mybool);
|
void setUseLocalMap(bool mybool);
|
||||||
bool getUseLocalMap();
|
bool getUseLocalMap();
|
||||||
|
|
||||||
void setUseBackgroundMap(bool);
|
void setUseBackgroundMap(bool mybool);
|
||||||
bool getUseBackgroundMap();
|
bool getUseBackgroundMap();
|
||||||
|
|
||||||
void setUseConstantValue(bool);
|
void setUseConstantValue(bool mybool);
|
||||||
bool getUseConstantValue();
|
bool getUseConstantValue();
|
||||||
|
|
||||||
void setConstantValue(double);
|
void setConstantValue(double cnst);
|
||||||
double getConstantValue() const;
|
double getConstantValue() const;
|
||||||
|
|
||||||
void setSizeMapFile(std::string);
|
void setSizeMapFile(std::string mapFile);
|
||||||
std::string getSizeMapFile();
|
std::string getSizeMapFile();
|
||||||
|
|
||||||
void setFromMedFile(bool);
|
void setFromMedFile(bool mybool);
|
||||||
bool isFromMedFile();
|
bool isFromMedFile();
|
||||||
|
|
||||||
void setKeepWorkingFiles(bool);
|
void setKeepWorkingFiles(bool mybool);
|
||||||
bool getKeepWorkingFiles();
|
bool getKeepWorkingFiles();
|
||||||
|
|
||||||
void setPrintLogInFile(bool);
|
void setPrintLogInFile(bool mybool);
|
||||||
bool getPrintLogInFile();
|
bool getPrintLogInFile();
|
||||||
|
|
||||||
void setWorkingDir(std::string);
|
void setWorkingDir(std::string dir);
|
||||||
std::string getWorkingDir() const;
|
std::string getWorkingDir() const;
|
||||||
|
|
||||||
|
|
||||||
@ -192,9 +192,9 @@ public:
|
|||||||
int compute(std::string& errStr);
|
int compute(std::string& errStr);
|
||||||
std::string getFileName() const;
|
std::string getFileName() const;
|
||||||
static std::string getExeName();
|
static std::string getExeName();
|
||||||
void copyMgAdaptHypothesisData( MgAdaptHypothesisData* ) ;
|
void copyMgAdaptHypothesisData( MgAdaptHypothesisData* from) ;
|
||||||
|
|
||||||
void checkDirPath(std::string& );
|
void checkDirPath(std::string& dirPath);
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -39,6 +39,7 @@ INCLUDE_DIRECTORIES(
|
|||||||
${PROJECT_BINARY_DIR}/adm_local/unix
|
${PROJECT_BINARY_DIR}/adm_local/unix
|
||||||
${PROJECT_SOURCE_DIR}/src/ADAPT
|
${PROJECT_SOURCE_DIR}/src/ADAPT
|
||||||
${PROJECT_SOURCE_DIR}/src/ADAPT_I
|
${PROJECT_SOURCE_DIR}/src/ADAPT_I
|
||||||
|
${MEDCOUPLING_INCLUDE_DIRS}
|
||||||
)
|
)
|
||||||
|
|
||||||
# additional preprocessor / compiler flags
|
# additional preprocessor / compiler flags
|
||||||
@ -56,6 +57,7 @@ SET(_link_LIBRARIES
|
|||||||
${GUI_SalomeApp}
|
${GUI_SalomeApp}
|
||||||
${SMESH_SalomeIDLSMESH}
|
${SMESH_SalomeIDLSMESH}
|
||||||
ADAPTEngine
|
ADAPTEngine
|
||||||
|
${MEDCoupling_medloader}
|
||||||
)
|
)
|
||||||
|
|
||||||
# --- resources ---
|
# --- resources ---
|
||||||
@ -112,6 +114,7 @@ SET(_moc_HEADERS
|
|||||||
MonCreateYACS.h
|
MonCreateYACS.h
|
||||||
MonEditYACS.h
|
MonEditYACS.h
|
||||||
MonEditFile.h
|
MonEditFile.h
|
||||||
|
MG_ADAPTGUI.hxx
|
||||||
)
|
)
|
||||||
|
|
||||||
# header files / uic wrappings
|
# header files / uic wrappings
|
||||||
@ -160,6 +163,7 @@ SET(_other_SOURCES
|
|||||||
MonEditYACS.cxx
|
MonEditYACS.cxx
|
||||||
MonEditFile.cxx
|
MonEditFile.cxx
|
||||||
HomardQtCommun.cxx
|
HomardQtCommun.cxx
|
||||||
|
MG_ADAPTGUI.cxx
|
||||||
)
|
)
|
||||||
|
|
||||||
# sources / to compile
|
# sources / to compile
|
||||||
|
@ -30,13 +30,13 @@
|
|||||||
#include "SalomeApp_Application.h"
|
#include "SalomeApp_Application.h"
|
||||||
#include "SalomeApp_Module.h"
|
#include "SalomeApp_Module.h"
|
||||||
#include "SalomeApp_Study.h"
|
#include "SalomeApp_Study.h"
|
||||||
#include "SMESH_Actor.h"
|
//~#include "SMESH_Actor.h"
|
||||||
#include <SUIT_MessageBox.h>
|
#include <SUIT_MessageBox.h>
|
||||||
#include <SMESH_TypeFilter.hxx>
|
//~#include <SMESH_TypeFilter.hxx>
|
||||||
#include <SMESH_MeshAlgos.hxx>
|
//~#include <SMESH_MeshAlgos.hxx>
|
||||||
#include <SMESH_LogicalFilter.hxx>
|
//~#include <SMESH_LogicalFilter.hxx>
|
||||||
#include <SMDS_Mesh.hxx>
|
//~#include <SMDS_Mesh.hxx>
|
||||||
#include <SMDS_MeshNode.hxx>
|
//~#include <SMDS_MeshNode.hxx>
|
||||||
#include <LightApp_SelectionMgr.h>
|
#include <LightApp_SelectionMgr.h>
|
||||||
#include <SUIT_OverrideCursor.h>
|
#include <SUIT_OverrideCursor.h>
|
||||||
#include <SUIT_ResourceMgr.h>
|
#include <SUIT_ResourceMgr.h>
|
@ -42,10 +42,12 @@ INCLUDE_DIRECTORIES(
|
|||||||
${PROJECT_SOURCE_DIR}/src/Controls
|
${PROJECT_SOURCE_DIR}/src/Controls
|
||||||
${PROJECT_SOURCE_DIR}/src/SMESHClient
|
${PROJECT_SOURCE_DIR}/src/SMESHClient
|
||||||
${PROJECT_SOURCE_DIR}/src/MEDWrapper
|
${PROJECT_SOURCE_DIR}/src/MEDWrapper
|
||||||
|
${PROJECT_SOURCE_DIR}/src/ADAPT
|
||||||
${PROJECT_SOURCE_DIR}/src/ADAPTGUI
|
${PROJECT_SOURCE_DIR}/src/ADAPTGUI
|
||||||
${PROJECT_BINARY_DIR}
|
${PROJECT_BINARY_DIR}
|
||||||
${PROJECT_BINARY_DIR}/idl
|
${PROJECT_BINARY_DIR}/idl
|
||||||
${PROJECT_BINARY_DIR}/src/ADAPTGUI
|
${PROJECT_BINARY_DIR}/src/ADAPTGUI
|
||||||
|
${PROJECT_BINARY_DIR}/src/ADAPT
|
||||||
${MEDCOUPLING_INCLUDE_DIRS}
|
${MEDCOUPLING_INCLUDE_DIRS}
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -154,7 +156,7 @@ SET(_moc_HEADERS
|
|||||||
SMESHGUI_PreVisualObj.h
|
SMESHGUI_PreVisualObj.h
|
||||||
SMESHGUI_AdaptDlg.h
|
SMESHGUI_AdaptDlg.h
|
||||||
SMESHGUI_MG_ADAPTDRIVER.h
|
SMESHGUI_MG_ADAPTDRIVER.h
|
||||||
MG_ADAPTGUI.hxx # to replace in ../ADAPTGUI/
|
#~MG_ADAPTGUI.hxx # to replace in ../ADAPTGUI/
|
||||||
)
|
)
|
||||||
|
|
||||||
# header files / no moc processing
|
# header files / no moc processing
|
||||||
@ -177,7 +179,7 @@ SET(_other_HEADERS
|
|||||||
SMESHGUI_FileValidator.h
|
SMESHGUI_FileValidator.h
|
||||||
SMESHGUI_SelectionProxy.h
|
SMESHGUI_SelectionProxy.h
|
||||||
SMESH_SMESHGUI.hxx
|
SMESH_SMESHGUI.hxx
|
||||||
MG_ADAPT.hxx # to replace in ../ADAPT/
|
#~MG_ADAPT.hxx # to replace in ../ADAPT/
|
||||||
)
|
)
|
||||||
|
|
||||||
# header files / to install
|
# header files / to install
|
||||||
@ -273,8 +275,8 @@ SET(_other_SOURCES
|
|||||||
SMESHGUI_IdPreview.cxx
|
SMESHGUI_IdPreview.cxx
|
||||||
SMESHGUI_AdaptDlg.cxx
|
SMESHGUI_AdaptDlg.cxx
|
||||||
SMESHGUI_MG_ADAPTDRIVER.cxx
|
SMESHGUI_MG_ADAPTDRIVER.cxx
|
||||||
MG_ADAPTGUI.cxx # to replace in ../ADAPTGUI/
|
#~MG_ADAPTGUI.cxx # to replace in ../ADAPTGUI/
|
||||||
MG_ADAPT.cxx # to replace in ../ADAPT/
|
#MG_ADAPT.cxx
|
||||||
)
|
)
|
||||||
|
|
||||||
# sources / to compile
|
# sources / to compile
|
||||||
|
Loading…
Reference in New Issue
Block a user