Salome HOME
Minor documentation and code review corrections (39)
[modules/adao.git] / configure.ac
index d533c42b106471655795c1ff0f9638391194a967..bda6994cd352e6fdbbd70890581ae180e7fb822b 100644 (file)
@@ -1,4 +1,6 @@
-dnl  Copyright (C) 2010  EDF R&D
+dnl  Copyright (C) 2008-2023 EDF R&D
+dnl
+dnl  This file is part of SALOME ADAO module
 dnl
 dnl  This library is free software; you can redistribute it and/or
 dnl  modify it under the terms of the GNU Lesser General Public
@@ -16,9 +18,9 @@ dnl  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 dnl
 dnl  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 dnl
-dnl  Author: AndrĂ© Ribes, andre.ribes@edf.fr, EDF R&D
+dnl  Author: Jean-Philippe Argaud, jean-philippe.argaud@edf.fr, EDF R&D
 
-AC_INIT(adao, 0.1)
+AC_INIT(ADAO_SRC, [7.2.0])
 AC_CONFIG_AUX_DIR(adm_local)
 AM_INIT_AUTOMAKE
 AM_CONFIG_HEADER(adao_config.h)
@@ -35,6 +37,7 @@ AC_PROG_CXX
 CHECK_KERNEL
 CHECK_OMNIORB
 CHECK_EFICAS
+CHECK_MODULE_EFICAS
 CHECK_SCIPY
 CHECK_SPHINX
 
@@ -57,6 +60,7 @@ echo "  OmniOrb (CORBA) ........ : $omniORB_ok"
 echo "  OmniOrbpy (CORBA) ...... : $omniORBpy_ok"
 echo "  SALOME KERNEL .......... : $Kernel_ok"
 echo "  Eficas ................. : $eficas_ok"
+echo "  Module Eficas .......... : $module_eficas_ok"
 echo
 echo "Optional products:"
 echo "  Sphinx (for doc)........ : $threads_ok"
@@ -84,7 +88,7 @@ if test "x$omniORBpy_ok" = "xno"; then
   salome_module_ok=no
 fi
 if test "x$Kernel_ok" = "xno"; then
-  AC_MSG_WARN([SALOME KERNEL is required for SALOME Module part - 
+  AC_MSG_WARN([SALOME KERNEL is required for SALOME Module part -
                You could define a correct KERNEL_ROOT_DIR or use the --with-kernel= configure option])
   salome_module_ok=no
 fi
@@ -92,6 +96,10 @@ if test "x$eficas_ok" = "xno"; then
   AC_MSG_WARN([Eficas is required for SALOME Module part])
   salome_module_ok=no
 fi
+if test "x$module_eficas_ok" = "xno"; then
+  AC_MSG_WARN([Module Eficas is required for SALOME Module part])
+  salome_module_ok=no
+fi
 
 AM_CONDITIONAL(SALOME_MODULE, test x$salome_module_ok = xyes)
 
@@ -99,6 +107,10 @@ if test "x$sphinx_ok" = "xno"; then
   AC_MSG_WARN([Sphinx is required for ADAO documentation])
 fi
 
+if test -f a.out; then
+  rm a.out
+fi
+
 AC_CONFIG_FILES([
         Makefile
         idl/Makefile
@@ -109,17 +121,30 @@ AC_CONFIG_FILES([
         src/daEficas/prefs_ADAO.py
         src/daSalome/Makefile
         src/daSalome/daGUI/Makefile
+        src/daSalome/daGUI/daUtils/Makefile
         src/daSalome/daGUI/daGuiImpl/Makefile
         src/daSalome/daGUI/daEficasWrapper/Makefile
-        src/daSalome/daGUI/daEficasWrapper/eficasWrapper.py
-        src/tests/Makefile
-        src/tests/daSalome/Makefile
-        src/tests/daSalome/test000_Blue_AnalysisFile.py
-        src/tests/daComposant/Makefile
-        src/tests/daComposant/Plateforme/Makefile
-        src/tests/daComposant/Plateforme/context.py
+        examples/Makefile
+        examples/daSalome/Makefile
+        examples/daSalome/test003_ADAO_JDC_using_scripts.comm
+        examples/daSalome/test003_ADAO_JDC_using_scripts.py
+        examples/daSalome/test003_bis_ADAO_JDC_using_user_data_init.comm
+        examples/daSalome/test003_bis_ADAO_JDC_using_user_data_init.py
+        examples/daSalome/test004_ADAO_JDC_using_scripts.comm
+        examples/daSalome/test004_ADAO_JDC_using_scripts.py
+        examples/daSalome/test005_ADAO_Operators.comm
+        examples/daSalome/test005_ADAO_Operators.py
+        examples/daSalome/test006_Observers.comm
+        examples/daSalome/test006_Observers.py
+        examples/daSkeletons/Makefile
+        examples/daSkeletons/External_data_definition_by_scripts/Makefile
+        examples/daSkeletons/External_data_definition_by_scripts/ADAO_Case.comm
         bin/Makefile
         bin/qtEficas_adao_study.py
         doc/Makefile
+        doc/en/Makefile
+        doc/fr/Makefile
+        test/Makefile
+        i18n/Makefile
         ])
 AC_OUTPUT