]> Creatis software - crea.git/blobdiff - appli/creaNewProject/creaNewProject.cpp
#3243 creaBug New Normal - Size DialgoWindow and size conflicts
[crea.git] / appli / creaNewProject / creaNewProject.cpp
index 17f64baeb072bc7f1ea1838da33f1e20f04e6b7b..b7b1bf635c6e696e8deffb57b662aa82dafec4cb 100644 (file)
@@ -80,11 +80,15 @@ bool myApp::OnInit( )
        command2 += "\"" + crea::wx2std(dir)+"\\"+crea::wx2std(name)+"\\CMakeLists.txt.in\"";
        if ( ! system ( command.c_str() ) )
        {
-               system ( command1.c_str() );
+               system ( command1.c_str() );
                system ( command2.c_str() );
 
         // Create a Package at the same time.   JPR
-               char *author = (char*) (authorWX.mb_str()) ;
+
+               //2018-07-06 mingw64
+//             char *author = (char*) (authorWX.mb_str()) ;
+               char *author = authorWX.mb_str() ;
+               
                std::string nomDirectory = crea::wx2std(dir) + "\\" + crea::wx2std(name);
                std::string nomPackageDirectory = nomDirectory + "\\" + "bbtk_" + crea::wx2std(name) + "_PKG";
                std::string bbCreatePackage("bbCreatePackage ");