]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - README_CMake
Updating responsibles for nightly tests (adding Hans Beck).
[u/mrichter/AliRoot.git] / README_CMake
index 70b098504bc655b0e3b8266b987106cc22064607..ad517e09dbca89a3aacf20ed8c856f160e16b7cb 100644 (file)
@@ -15,13 +15,32 @@ Steps to Build AliRoot with CMake :
 
 3. Execute the following commands to build AliRoot
 
-       cmake ~/trunk
+       cmake <Path to Source>
+
+eg.    cmake ~/trunk
        make
 
 4. In order to build addtional targets like THydjet and SHUTTLE add the following options to the cmake command
 
        cmake -DTHydjet=ON -DSHUTTLE=ON <path_to_source>
 
+5. Static libraries can be built using
+
+       make alilibs-static
+
+6. Individual Modules can be built using
+
+       make <Module>-all
+       make <Module>-all-static 
+
+eg.    make STEER-all STEER-all-static
+
+7. Individual Packages can be built using
+
+       make <Package>
+       make <Package>-static
+
+eg.    make STEERbase STEERbase-static
 
 !IMPORTANT! - Make sure your source folder is clean. If you used the old make system to build aliroot run make clean in the source directory before you run cmake