]> SALOME platform Git repositories - modules/yacs.git/blobdiff - doc/calculator.rst
Salome HOME
bos #26458 Versioning of sources via git commit id (sha1)
[modules/yacs.git] / doc / calculator.rst
index bebb02a4e8f11c7425633fd1f14e8bbf6d427cd7..b457151d64d899da66e35d91f911cd5a9719344f 100644 (file)
@@ -65,21 +65,16 @@ The first step when developing a new SALOME module is to create a directories tr
 
 
 
-The remaining charge for the developer is to define the module interface (by writing a CORBA IDL file), and to implement it. But before, you may want to check that your  duplicated module still compiles :
+The remaining charge for the developer is to define the module interface (by writing a CORBA IDL file), and to implement it. But before, you may want to check that your  duplicated module still compiles ::
 
-
-
-::
-
-    CALCULATOR_SRC/build_configure
     mkdir CALCULATOR_BUILD
     mkdir CALCULATOR_INSTALL
     cd CALCULATOR_BUILD
-    ../CALCULATOR_SRC/configure --prefix=installDir
+    cmake -DCMAKE_BUILD_TYPE=<Mode> -DCMAKE_INSTALL_PREFIX=CALCULATOR_INSTALL ../CALCULATOR_SRC
     make && make install
 
 
-
+Where <Mode> is build mode (Release or Debug)
 
 
 Modification of interface (IDL)