]> Creatis software - crea.git/blobdiff - appli/creaNewProject/creaNewProject.sh.in
creaNewProject creates new Package at the same time
[crea.git] / appli / creaNewProject / creaNewProject.sh.in
index 2abd4eb18b4042b78917e04946384326e443c748..f9d229e8681bfc4751ddc31b72d0955e7ad7576f 100755 (executable)
@@ -3,7 +3,7 @@
 
 if [ $# -lt 2 ]
     then
-    echo "usage : creaNewProject <project-path> <project-name>"  
+    echo "usage : creaNewProject <project-path> <project-name>" 
     exit
 fi
 
@@ -21,17 +21,17 @@ echo "bin    = " $BINPATH
 echo "input  = " $INPUT
 echo "project= " $PROJECT
 
-if [ -d $OUTPUT/${PROJECT} ] 
+if [ -d $OUTPUT/${PROJECT} ]
     then 
-    echo "ERROR : Directory '$OUTPUT/${PROJECT}' already exists !"  
+    echo "ERROR : Directory '$OUTPUT/${PROJECT}' already exists !"
     exit 1
 fi
 
 echo "** Creating new project '$PROJECT' in folder '$OUTPUT'"
 
-if [ ! -d $OUTPUT ] 
+if [ ! -d $OUTPUT ]
     then 
-    echo "ERROR : Directory '$OUTPUT' does not exist !"  
+    echo "ERROR : Directory '$OUTPUT' does not exist !"
     exit 1
 fi
 
@@ -41,5 +41,11 @@ cd $OUTPUT/$PROJECT
 cat CMakeLists.txt.in | sed s,PROJECT_NAME,"${PROJECT}", > CMakeLists.txt
 rm CMakeLists.txt.in
 
-echo "Done !" 
-echo "Edit the file '$OUTPUT/${PROJECT}/CMakeLists.txt' to customize your project"
+echo
+echo "New Project created !" 
+echo
+echo "==>"
+echo "==> Edit the file '$OUTPUT/${PROJECT}/CMakeLists.txt' to customize your project"
+echo "==>"
+echo
+echo