Salome HOME
modules/kernel.git
11 years agoFix Numpy version conflict when using custom Numpy with System Python and that anothe... B4NGCMakeInt
barate [Tue, 18 Dec 2012 16:12:35 +0000 (16:12 +0000)]
Fix Numpy version conflict when using custom Numpy with System Python and that another Numpy is installed in the system

11 years agoThrow exception instead of exit when ContainerManager cannot be resolved in naming...
barate [Tue, 18 Dec 2012 15:51:10 +0000 (15:51 +0000)]
Throw exception instead of exit when ContainerManager cannot be resolved in naming service (happens when the naming service is not SALOME Naming service). This fixes bugs when calling salome_init() outside SALOME application.

11 years agoRemove duplicate function in SALOME_KernelServices.hxx
barate [Tue, 18 Dec 2012 12:24:09 +0000 (12:24 +0000)]
Remove duplicate function in SALOME_KernelServices.hxx

11 years agoProperly detect TBB when installed in the system (/usr)
barate [Tue, 18 Dec 2012 10:04:46 +0000 (10:04 +0000)]
Properly detect TBB when installed in the system (/usr)

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 12:25:02 +0000 (12:25 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

-  Notifier*                      _notifier;
+  SALOMEDSImpl_AbstractCallback* _notifier;
+  SALOMEDSImpl_AbstractCallback* _genObjRegister;

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 12:24:39 +0000 (12:24 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

+  class GenObjRegister: public SALOMEDSImpl_AbstractCallback
+  {

SALOMEDS_Study_i::SALOMEDS_Study_i()
{
+  _genObjRegister = new SALOMEDS::GenObjRegister(_orb);

SALOMEDS_Study_i::~SALOMEDS_Study_i()
{
+  _impl->setNotifier(0);
+  delete _notifier;
+  delete _genObjRegister;

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 12:20:42 +0000 (12:20 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

-  else _name_service->Register(Study, CORBA::string_dup(aStudyImpl->Name().c_str()));
+  else _name_service->Register(Study, aStudyImpl->Name().c_str());

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 12:20:06 +0000 (12:20 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

-  aFO = _impl->GetOwner()->GetSObject(theFatherObject->GetID());
+  CORBA::String_var fatherEntry = theFatherObject->GetID();
+  aFO = _impl->GetOwner()->GetSObject( fatherEntry.in() );

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 12:19:10 +0000 (12:19 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

+  so->UnRegister();

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 12:18:20 +0000 (12:18 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

  Declare SALOMEDS::SObject_wrap etc types

+ SALOMEDS_Attributes_wrap.hxx \
+ SALOMEDS_wrap.hxx

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 12:16:42 +0000 (12:16 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

+  delete [] aBuffer;

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 12:16:09 +0000 (12:16 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

  Add debug code printing object type and myRefCounter

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 12:13:58 +0000 (12:13 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

  Define SALOME::GenericObj_wrap< GENOBJ >

+ SALOME_GenericObj_wrap.hxx

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 10:37:47 +0000 (10:37 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

-      SALOMEDSImpl_AttributeIOR::Set (current, ior_string);
+      SALOMEDSImpl_AttributeIOR* iorAttr = SALOMEDSImpl_AttributeIOR::Set (current, ior_string);

+      // make myRefCounter of a loaded GenericObj == 1
+      SALOMEDSImpl_Study::UnRegisterGenObj( ior_string, iorAttr->Label());

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 10:36:00 +0000 (10:36 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

  Remove dependency on CORBA

+  SALOMEDSImpl_AbstractCallback* _genObjRegister;

+  static void RegisterGenObj  (const std::string& theIOR, DF_Label label);
+  static void UnRegisterGenObj(const std::string& theIOR, DF_Label label);
+  void setGenObjRegister(SALOMEDSImpl_AbstractCallback* theRegister);

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 10:35:05 +0000 (10:35 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

  Remove dependency on CORBA

11 years agodecorations :)
eap [Fri, 14 Dec 2012 10:32:29 +0000 (10:32 +0000)]
decorations :)

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 10:31:23 +0000 (10:31 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

+  virtual void RegisterGenObj  (const std::string& theIOR) {}
+  virtual void UnRegisterGenObj(const std::string& theIOR) {}

11 years ago21948: EDF SMESH : Memory is not freed when deleting a mesh
eap [Fri, 14 Dec 2012 10:30:06 +0000 (10:30 +0000)]
21948: EDF SMESH : Memory is not freed when deleting a mesh

-  delete c;
-  delete buffer;
+  delete [] c;
+  delete [] buffer;

11 years agoMerge from V6_6_BR (V6_6_0rc2) 11/12/2012
vsr [Tue, 11 Dec 2012 11:39:10 +0000 (11:39 +0000)]
Merge from V6_6_BR (V6_6_0rc2) 11/12/2012

11 years agoGet info returned by writeORBConfigFile
aguerre [Mon, 12 Nov 2012 08:25:49 +0000 (08:25 +0000)]
Get info returned by writeORBConfigFile

11 years agofix bug in searchFreePort.py (call with no arg)
aguerre [Tue, 30 Oct 2012 09:51:49 +0000 (09:51 +0000)]
fix bug in searchFreePort.py (call with no arg)

11 years agobug fix: get return values from call to generateFileName
aguerre [Thu, 25 Oct 2012 13:53:06 +0000 (13:53 +0000)]
bug fix: get return values from call to generateFileName

11 years agoadd ompi mpi implementation for cea mars cluster
secher [Wed, 24 Oct 2012 08:37:23 +0000 (08:37 +0000)]
add ompi mpi implementation for cea mars cluster

11 years agoCA: Bug correction PAL2416
aguerre [Mon, 22 Oct 2012 14:37:14 +0000 (14:37 +0000)]
CA: Bug correction PAL2416
CORBA configuration for GIOP Max msg size (set to 2GB).
Done in only one place.

M bin/CMakeLists.txt
M bin/Makefile.am
A bin/ORBConfigFile.py
M bin/killSalome.py
M bin/killSalomeWithPort.py
M bin/launchConfigureParser.py
M bin/launchSalome.py
M bin/orbmodule.py
M bin/runSalome.ksh
M bin/runSalome.py
M bin/salomeConsole.py
M bin/salome_session.py
A bin/searchFreePort.py
M bin/appliskel/runRemote.sh
M bin/appliskel/runSession
M bin/appliskel/runTests
M bin/appliskel/searchFreePort.sh

11 years agoFix problem in documentation generation for TUI (Python API) of GEOM and SMESH classes V6_6_0a1
vsr [Mon, 22 Oct 2012 09:57:55 +0000 (09:57 +0000)]
Fix problem in documentation generation for TUI (Python API) of GEOM and SMESH classes

11 years agoGenerating documentation by CMake:small fix
ana [Mon, 22 Oct 2012 07:29:11 +0000 (07:29 +0000)]
Generating documentation by CMake:small fix

11 years agoWin32 compatibility
ana [Mon, 22 Oct 2012 06:50:21 +0000 (06:50 +0000)]
Win32 compatibility

11 years agoCMake compatibility: fix error: expected 'float *' but argument is of type 'double *'
ana [Mon, 22 Oct 2012 06:36:04 +0000 (06:36 +0000)]
CMake compatibility: fix error: expected 'float *' but argument is of type 'double *'

11 years ago- Ajout d'une API C/F/Python permettant d'écrire des floats/doubles dans des ports...
fayolle [Thu, 18 Oct 2012 13:46:35 +0000 (13:46 +0000)]
- Ajout d'une API C/F/Python permettant d'écrire des floats/doubles dans des ports double/float (conversions automatiques).

11 years ago0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the...
vsr [Thu, 18 Oct 2012 12:29:58 +0000 (12:29 +0000)]
0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file
Additional fix: whe old study is opened, automatically add "unknown" version tag for all components

11 years agoFix symbol resolution problems when Salome is compiled with autotools on Ubuntu 12.04
barate [Wed, 17 Oct 2012 12:12:35 +0000 (12:12 +0000)]
Fix symbol resolution problems when Salome is compiled with autotools on Ubuntu 12.04

11 years agowin32 compatibility
ana [Wed, 17 Oct 2012 07:26:21 +0000 (07:26 +0000)]
win32 compatibility

11 years agoCMake compatibility
ana [Wed, 17 Oct 2012 07:05:43 +0000 (07:05 +0000)]
CMake compatibility

11 years ago0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the...
vsr [Tue, 16 Oct 2012 14:29:37 +0000 (14:29 +0000)]
0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file

11 years ago0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the...
vsr [Tue, 16 Oct 2012 08:17:12 +0000 (08:17 +0000)]
0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file

11 years agoPorting SALOME KERNEL to CMake
ana [Fri, 12 Oct 2012 15:41:44 +0000 (15:41 +0000)]
Porting SALOME KERNEL to CMake

11 years agoPorting SALOME GUI to CMake
ana [Wed, 10 Oct 2012 08:56:30 +0000 (08:56 +0000)]
Porting SALOME GUI to CMake

11 years agoModify runSalome script - the python scripts should be executed in GUI only if it...
vsr [Tue, 9 Oct 2012 16:28:34 +0000 (16:28 +0000)]
Modify runSalome script - the python scripts should be executed in GUI only if it is started (--gui / -g option) and desktop is activated (--show-desktop=1 / -d1 option); otherwise the scripts, if specified, should be executed in the external Python.

11 years agoAdd missing end-of-line
vsr [Tue, 9 Oct 2012 08:40:45 +0000 (08:40 +0000)]
Add missing end-of-line

11 years ago1) Add CMake files to the dist rules (make dist)
vsr [Tue, 9 Oct 2012 08:35:17 +0000 (08:35 +0000)]
1) Add CMake files to the dist rules (make dist)
2) Fix problems of make dist (missing files)

11 years agoPartial fix for the 0021727: [CEA 584] sending a Yacs graph from Windows to a cluster...
rnv [Mon, 8 Oct 2012 11:19:00 +0000 (11:19 +0000)]
Partial fix for the 0021727: [CEA 584] sending a Yacs graph from Windows to a cluster issue.

11 years agoPR: KERNEL Developer's guide with full index
prascle [Sun, 7 Oct 2012 17:31:22 +0000 (17:31 +0000)]
PR: KERNEL Developer's guide with full index

11 years agoCMake: Add new macros
ana [Wed, 3 Oct 2012 11:30:42 +0000 (11:30 +0000)]
CMake: Add new macros

11 years agoCMake: Set env var for CPPUNIT
ana [Tue, 2 Oct 2012 16:59:52 +0000 (16:59 +0000)]
CMake: Set env var for CPPUNIT

11 years agoFixing compilation error on gcc4.7
ageay [Tue, 2 Oct 2012 10:50:50 +0000 (10:50 +0000)]
Fixing compilation error on gcc4.7

11 years agoSynchronization env var for CPPUNIT with autotools : CPPUNIT_ROOT -> CPPUNITHOME
ageay [Mon, 1 Oct 2012 13:15:39 +0000 (13:15 +0000)]
Synchronization env var for CPPUNIT with autotools : CPPUNIT_ROOT -> CPPUNITHOME

11 years agoCMake compatibility: fix problen with MPI
ana [Thu, 27 Sep 2012 08:32:56 +0000 (08:32 +0000)]
CMake compatibility: fix problen with MPI

11 years agoCMake compatibility: fix problen with LIBBATCH
ana [Thu, 27 Sep 2012 07:34:58 +0000 (07:34 +0000)]
CMake compatibility: fix problen with LIBBATCH

11 years agoModify am2cmake procedure:
vsr [Thu, 27 Sep 2012 07:17:22 +0000 (07:17 +0000)]
Modify am2cmake procedure:
- since generation of CMakeLists.txt is actually required on each level, rollback (partially) previous commit

11 years agoImprove am2cmake procedure:
vsr [Thu, 27 Sep 2012 06:15:00 +0000 (06:15 +0000)]
Improve am2cmake procedure:
- allow forcing am2cmake conversion procedure for separate modules only (with dedicated env variables, e.g. AM2CMAKE_FORCE_KERNEL_GENERATION)
- if top-level CMakeLists.txt file is not am2cmake-generated, stop converting of lower-level files also (instead of checking CMakeLists.txt file separately at each level)

11 years agoFix problem of SMESH compilation with CMake
vsr [Thu, 27 Sep 2012 05:16:30 +0000 (05:16 +0000)]
Fix problem of SMESH compilation with CMake

11 years agoPorting SALOME KERNEL to CMake: add missing flags
ana [Wed, 26 Sep 2012 13:03:10 +0000 (13:03 +0000)]
Porting SALOME KERNEL to CMake: add missing flags

11 years agoPorting SALOME KERNEL to CMake
ana [Wed, 26 Sep 2012 12:31:21 +0000 (12:31 +0000)]
Porting SALOME KERNEL to CMake

11 years agoPorting SALOME KERNEL to CMake
ana [Wed, 26 Sep 2012 12:00:44 +0000 (12:00 +0000)]
Porting SALOME KERNEL to CMake

11 years agoWin32 compatibility for HexoticPLUGIN module
ana [Mon, 24 Sep 2012 12:22:36 +0000 (12:22 +0000)]
Win32 compatibility for HexoticPLUGIN module

11 years ago0021781: [CEA 616] Suppress . in the user's config files
vsr [Mon, 24 Sep 2012 08:33:43 +0000 (08:33 +0000)]
0021781: [CEA 616] Suppress . in the user's config files

11 years agoCheck usability of sphynx before declaring it OK.
ageay [Fri, 21 Sep 2012 06:15:20 +0000 (06:15 +0000)]
Check usability of sphynx before declaring it OK.

11 years agoCompilation SALOME by CMake(windows/linux)
ana [Wed, 19 Sep 2012 11:22:18 +0000 (11:22 +0000)]
Compilation SALOME by CMake(windows/linux)

11 years ago0021670: EDF 2265 GUI: Update GUI documentation
vsr [Tue, 11 Sep 2012 15:06:17 +0000 (15:06 +0000)]
0021670: EDF 2265 GUI: Update GUI documentation
Move documentation on SALOME running from GUI to KERNEL module.

11 years agoImplementation of the "0021670: EDF 2265 GUI: Update GUI documentation" issue.
rnv [Tue, 11 Sep 2012 12:52:31 +0000 (12:52 +0000)]
Implementation of the "0021670: EDF 2265 GUI: Update GUI documentation" issue.

11 years agoFix for the "21727: [CEA 584] sending a Yacs graph from Windows to a cluster " issue.
rnv [Tue, 31 Jul 2012 08:08:47 +0000 (08:08 +0000)]
Fix for the "21727: [CEA 584] sending a Yacs graph from Windows to a cluster " issue.

11 years agoAdd os.path.realpath
gdd [Wed, 27 Jun 2012 09:44:40 +0000 (09:44 +0000)]
Add os.path.realpath

11 years agostandardization of cmakization 2.
ageay [Thu, 7 Jun 2012 15:19:22 +0000 (15:19 +0000)]
standardization of cmakization 2.

11 years agocmakeization standardization.
ageay [Thu, 7 Jun 2012 14:27:17 +0000 (14:27 +0000)]
cmakeization standardization.

11 years agoAnother fix for compilation with gcc 4.7
gdd [Thu, 7 Jun 2012 11:53:26 +0000 (11:53 +0000)]
Another fix for compilation with gcc 4.7

11 years agoFix for compilation with gcc 4.7
gdd [Thu, 7 Jun 2012 11:26:11 +0000 (11:26 +0000)]
Fix for compilation with gcc 4.7

11 years ago0021482: [CEA 539] inconsistency between getAppliPath.py and runAppli
vsr [Thu, 7 Jun 2012 10:07:22 +0000 (10:07 +0000)]
0021482: [CEA 539] inconsistency between getAppliPath.py and runAppli

11 years agoAdding a new method to initialize YACS services if
ribes [Thu, 7 Jun 2012 09:22:35 +0000 (09:22 +0000)]
Adding a new method to initialize YACS services if
the multi property on the service is used.

11 years agoMerge from V6_5_BR 05/06/2012
vsr [Tue, 5 Jun 2012 10:45:05 +0000 (10:45 +0000)]
Merge from V6_5_BR 05/06/2012

12 years agoPorting documentation on the Doxygen-1.8.0 V6_5_0a1
rnv [Thu, 12 Apr 2012 07:06:43 +0000 (07:06 +0000)]
Porting documentation on the Doxygen-1.8.0

12 years agoMED CMakization
ageay [Tue, 3 Apr 2012 12:45:35 +0000 (12:45 +0000)]
MED CMakization

12 years agoMED CMakization
ageay [Tue, 3 Apr 2012 10:39:18 +0000 (10:39 +0000)]
MED CMakization

12 years agoMED CMakization
ageay [Mon, 2 Apr 2012 13:40:49 +0000 (13:40 +0000)]
MED CMakization

12 years agoUsefull Macro for *.pyc and *.pyo on install.
ageay [Mon, 2 Apr 2012 12:40:07 +0000 (12:40 +0000)]
Usefull Macro for *.pyc and *.pyo on install.

12 years agoMED CMakization.
ageay [Fri, 30 Mar 2012 09:59:54 +0000 (09:59 +0000)]
MED CMakization.

12 years agoMED CMakization.
ageay [Fri, 30 Mar 2012 08:36:47 +0000 (08:36 +0000)]
MED CMakization.

12 years agoImprove dev docs
vsr [Thu, 29 Mar 2012 15:39:44 +0000 (15:39 +0000)]
Improve dev docs

12 years agoMerge from BR_VISHNU
barate [Wed, 28 Mar 2012 16:05:07 +0000 (16:05 +0000)]
Merge from BR_VISHNU

12 years agoBuild PLUGIN'S documentation.
rnv [Wed, 28 Mar 2012 14:34:04 +0000 (14:34 +0000)]
Build PLUGIN'S documentation.

12 years agoMED CMakization
ageay [Fri, 23 Mar 2012 15:48:12 +0000 (15:48 +0000)]
MED CMakization

12 years agoWin32 compilation.
rnv [Thu, 22 Mar 2012 11:53:10 +0000 (11:53 +0000)]
Win32 compilation.

12 years agoAdd new env var TIMEOUT_TO_WAIT_EXE_COMPONENT
ribes [Thu, 22 Mar 2012 10:31:19 +0000 (10:31 +0000)]
Add new env var TIMEOUT_TO_WAIT_EXE_COMPONENT

Defines how many seconds a container waits an exe component to be loaded

12 years agoCmakization of MED.
ageay [Thu, 22 Mar 2012 09:45:24 +0000 (09:45 +0000)]
Cmakization of MED.

12 years agoCmakization of MED.
ageay [Thu, 22 Mar 2012 08:50:22 +0000 (08:50 +0000)]
Cmakization of MED.

12 years agoAdding new env variable for SALOME: TIMEOUT_TO_LAUNCH_CONTAINER
ribes [Wed, 21 Mar 2012 17:01:30 +0000 (17:01 +0000)]
Adding new env variable for SALOME: TIMEOUT_TO_LAUNCH_CONTAINER

If set to an int, defines how many seconds the SALOME container manager
will wait for a container

12 years agoBasic FaultTolerance for ContainerManager
ribes [Wed, 21 Mar 2012 16:43:48 +0000 (16:43 +0000)]
Basic FaultTolerance for ContainerManager

If a machine is not available (shutdown for instance), try to launch
the container on another resource according to the getFittingResources list.

12 years agoCmakization of MED.
ageay [Wed, 21 Mar 2012 14:27:21 +0000 (14:27 +0000)]
Cmakization of MED.

12 years agoCmakization of MED.
ageay [Wed, 21 Mar 2012 13:07:17 +0000 (13:07 +0000)]
Cmakization of MED.

12 years agoCmakization of MED.
ageay [Wed, 21 Mar 2012 12:53:50 +0000 (12:53 +0000)]
Cmakization of MED.

12 years agoFix check of the AM2CMAKE_FORCE_GENERATION environment variable
vsr [Wed, 21 Mar 2012 08:53:31 +0000 (08:53 +0000)]
Fix check of the AM2CMAKE_FORCE_GENERATION environment variable

12 years ago0021336: EDF 1717 SMESH: New algorithm "body fitting" cartesian unstructured
eap [Wed, 21 Mar 2012 08:33:32 +0000 (08:33 +0000)]
0021336: EDF 1717 SMESH: New algorithm "body fitting" cartesian unstructured

+check_tbb.m4

12 years agoForced generation of the CMakeLists.txt from Makefile.am
rnv [Wed, 21 Mar 2012 08:25:15 +0000 (08:25 +0000)]
Forced generation of the CMakeLists.txt from Makefile.am

12 years agoCmakization of MED.
ageay [Tue, 20 Mar 2012 16:03:08 +0000 (16:03 +0000)]
Cmakization of MED.

12 years agoBug IPAL22865 "Re-structurization of Partition-related packges in SALOME GEOM module"
ana [Tue, 20 Mar 2012 12:00:07 +0000 (12:00 +0000)]
Bug IPAL22865 "Re-structurization of Partition-related packges in SALOME GEOM module"
Win32 compilation

12 years agoWorking on PAL# 2078
ribes [Mon, 19 Mar 2012 16:54:58 +0000 (16:54 +0000)]
Working on PAL# 2078

Adding two new attributes to a SALOME resource:

is_cluster_head ->  set to "true" if the resource refers to a cluster head (false by default)
working_directory -> defines a default working directory in a cluster

12 years agocmakization of MED.
ageay [Mon, 19 Mar 2012 15:01:13 +0000 (15:01 +0000)]
cmakization of MED.

12 years agoResolve PAL# 2058
ribes [Mon, 19 Mar 2012 10:40:43 +0000 (10:40 +0000)]
Resolve PAL# 2058

Create a default catalog resources file if USER_CATALOG_RESOURCES_FILE
env variable is set on an unexisting file.

If we cannot create the file, we use the default catalog resource file

12 years agoAdd functions to know that SALOME module version is development one
vsr [Mon, 19 Mar 2012 07:27:35 +0000 (07:27 +0000)]
Add functions to know that SALOME module version is development one

12 years agoam2cmake.py does not overwrite not automatically generated CMakeLists.txt.
ageay [Fri, 16 Mar 2012 16:04:42 +0000 (16:04 +0000)]
am2cmake.py does not overwrite not automatically generated CMakeLists.txt.