Quick 3.3RC1 mac os x 10.10.1 下无法创建项目?????????

quick 3.3RC1 mac os x 10.10.1 下无法创建项目?????????

问题已经解决,修改/{quick 3.3RC1目录}/quick/bin/lib/quick/ProjectCreator.php文件
该文件完整内容如下:

<?php

require_once(__DIR__ . '/init.php');


define('DS_CREATOR', DIRECTORY_SEPARATOR);
define('BIN_DIR_CREATOR', rtrim(dirname(dirname(__DIR__)), '/\\'));

if (DS_CREATOR == '/')
{
    define('QUICK_V3_ROOT', BIN_DIR_CREATOR . '/../..');
}
else
{
    define('QUICK_V3_ROOT', $_ENV'QUICK_V3_ROOT']);
}

class ProjectCreator
{
    private $config;
    private $options;
    private $validated = false;
    private $vars = array();

    function __construct(array $config, array $options)
    {
        $this->config = $config;
        $this->options = $options;
    }

    function validateConfig()
    {
        $isLite = $this->config'lite'];
        // check template
        $templatePath = rtrim($this->config'template'], "/\\");
        if ($isLite)
        {
            $templatePath = $templatePath . '-lite';
        }
        $templatePath = $templatePath . DS;
        if (!is_dir($templatePath))
        {
            printf("ERROR: invalid template path \"%s\"\n", $templatePath);
            return false;
        }
        if (!file_exists($templatePath . '../cocos2dx_files.json'))
        {
            printf("ERROR: not found cocos2dx_files.json in template path \"%s/..\"\n", $templatePath);
            return false;
        }
        $cocos_files = file_get_contents($templatePath . '../cocos2dx_files.json');
        $cocos_files = json_decode($cocos_files, true);
        if (!is_array($cocos_files) || empty($cocos_files'common']))
        {
            printf("ERROR: not found cocos2dx_files.json in template path \"%s/..\"\n", $templatePath);
            return false;
        }
        $this->config'template'] = $templatePath;
        $this->config'cocos_files'] = $cocos_files;

        // check package name
        $packageName = str_replace('-', '_', strtolower($this->config'package']));
        $parts = explode('.', $packageName);
        $packageName = array();
        for ($i = 0; $i < count($parts); $i++)
        {
            $parts$i] = preg_replace('/^a-z0-9_]/', '', $parts$i]);
            if (!empty($parts$i])) $packageName] = $parts$i];
        }
        if (count($packageName) < 2)
        {
            printf("ERROR: invalid package name \"%s\"\n", implode('.', $packageName));
            return false;
        }

        $lastname = $packageName;
        array_pop($packageName);
        $packageName = implode('.', $packageName);
        $this->config'package'] = $packageName . '.' . $lastname;
        $this->config'packageLastName'] = $lastname;
        $this->config'packageFullName'] = $packageName . '.' . $lastname;
        $this->config'packageModuleName'] = $packageName;

        // check output path
        if (empty($this->config'output']))
        {
            $curpath = rtrim(getcwd(), '/\\');
            $this->config'output'] = $curpath . DS . $lastname . DS;
            $this->config'cocos_output'] = $curpath;
            $this->config'cocos_project'] = $lastname;
        }
        else
        {
            $outpath = rtrim($this->config'output'], '/\\');
            $this->config'output'] = $outpath . DS;
            $pos = strrpos($outpath, DS);
            if ($pos != false)
            {
                $this->config'cocos_output'] = substr($outpath, 0, $pos);
                $this->config'cocos_project'] = substr($outpath, $pos+1);
            }
            else
            {
                $this->config'cocos_output'] = $outpath;
                $this->config'cocos_project'] = $lastname;
            }
        }
        if (!$this->config'force'] && (is_dir($this->config'output']) || file_exists($this->config'output'])))
        {
            printf("ERROR: project path \"%s\" exists\n", $this->config'output']);
            return false;
        }

        // check screen orientation
        $orientation = strtolower($this->config'orientation']);
        if ($orientation != 'landscape' && $orientation != 'portrait')
        {
            printf("ERROR: invalid screen orientation \"%s\"\n", $orientation);
            return false;
        }
        $this->config'orientation'] = $orientation;

        // check more configs
        if ($this->config'noproj'] && $this->config'onlyproj'])
        {
            print("ERROR: noproj and onlyproj cannot enable at the same time\n");
            return false;
        }

        //if ($this->options'extracmd'])
        //{
        //    $this->config'extracmd'] = $this->options'extracmd'];
        //}

        if (!$this->config'quiet'])
        {
            dumpConfig($this->config, $this->options);
        }
        $this->validated = true;
        return true;
    }

    function run()
    {
        if (!$this->validated)
        {
            print("ERR: invalid config\n");
            return false;
        }

        // create project dir
        // if (!is_dir($this->config'output'])) mkdir($this->config'output']);
        // if (!is_dir($this->config'output']))
        // {
        //     printf("ERROR: create project dir \"%s\" failure\n", $this->config'output']);
        //     return false;
        // }

        // prepare contents
        $this->vars'__TEMPLATE_PATH__'] = $this->config'template'];
        $this->vars'__PROJECT_COCOS_NAME__'] = $this->config'cocos_project'];
        $this->vars'__PROJECT_PACKAGE_MODULE_NAME__'] = $this->config'packageModuleName'];
        $this->vars'__PROJECT_PACKAGE_MODULE_NAME_L__'] = strtolower($this->config'packageModuleName']);
        $this->vars'__PROJECT_PACKAGE_FULL_NAME__'] = $this->config'packageFullName'];
        $this->vars'__PROJECT_PACKAGE_FULL_NAME_L__'] = strtolower($this->config'packageFullName']);
        $this->vars'__PROJECT_PACKAGE_LAST_NAME__'] = $this->config'packageLastName'];
        $this->vars'__PROJECT_PACKAGE_LAST_NAME_L__'] = strtolower($this->config'packageLastName']);
        $this->vars'__PROJECT_PACKAGE_LAST_NAME_UF__'] = ucfirst(strtolower($this->config'packageLastName']));
        $this->vars'__PROJECT_PATH__'] = $this->config'output'];
        $this->vars'__SCREEN_ORIENTATION__'] = $this->config'orientation'];
        $this->vars'__SCREEN_ORIENTATION_L__'] = strtolower($this->config'orientation']);
        $this->vars'__SCREEN_ORIENTATION_UF__'] = ucfirst(strtolower($this->config'orientation']));
        if ($this->config'orientation'] == 'landscape')
        {
            $this->vars'__SCREEN_WIDTH__'] = '960';
            $this->vars'__SCREEN_HEIGHT__'] = '640';
            $this->vars'__SCREEN_ORIENTATION_QUICK__'] = 'FIXED_HEIGHT';
        }
        else
        {
            $this->vars'__SCREEN_WIDTH__'] = '640';
            $this->vars'__SCREEN_HEIGHT__'] = '960';
            $this->vars'__SCREEN_ORIENTATION_QUICK__'] = 'FIXED_WIDTH';
        }

        if ($this->config'orientation'] == 'landscape')
        {
            $this->vars'__SCREEN_ORIENTATION_IOS__'] = "UIInterfaceOrientationLandscapeRight\nUIInterfaceOrientationLandscapeLeft";
        }
        else
        {
            $this->vars'__SCREEN_ORIENTATION_IOS__'] = 'UIInterfaceOrientationPortrait';
        }

        if ($this->config'orientation'] == 'landscape')
        {
            $this->vars'__SCREEN_ORIENTATION_CONFIG_JSON__'] = 'true';
        }
        else
        {
            $this->vars'__SCREEN_ORIENTATION_CONFIG_JSON__'] = 'false';
        }

        // $consoleDir = $_ENV'COCOS_CONSOLE_ROOT'];
        // // call cocos to create new project
        // $cmd_str = $consoleDir . "/cocos new " . $this->config'cocos_project']
        //             . " -p " . $this->vars'__PROJECT_PACKAGE_FULL_NAME__']
        //             . " -l lua -t runtime -d " . $this->config'cocos_output'];
        // if ($this->config'extracmd'])
        // {
        //     $cmd_str = $cmd_str . ' ' . str_replace('#', ' ', $this->config'extracmd']);
        // }
        // $this->exec_sys_cmd($cmd_str);

        // copy files
        $paths = $this->getPaths($this->config'template']);
        foreach ($paths as $sourcePath)
        {
            $sourceFilename = substr($sourcePath, strlen($this->config'template']));
            if ($sourceFilename == 'cocos-project-template.json') continue;
            if ($this->config'noproj'])
            {
                if (substr($sourceFilename, 0, 5) == 'proj.' || substr($sourceFilename, 0, 8) == 'sources/')
                {
                    continue;
                }
            }
            else if ($this->config'onlyproj'])
            {
                if (substr($sourceFilename, 0, 5) != 'proj.' && substr($sourceFilename, 0, 8) != 'sources/' && substr($sourceFilename, 0, 10) != 'run-mac.sh' )
                {
                    continue;
                }
            }
            if (!$this->copyFile($sourcePath)) return false;
        }

        $this->copyTemplateSharedFiles();
        $this->copyFrameworkFiles();
        // $this->copyRuntimeSources();
        if (!$this->config'lite'])
        {
            $this->copyCocosFiles();
            $this->copyQuickSources();
            $this->fixFiles();
            $this->replaceFiles();
        }
        // $this->modifyFiles();

        print("\n\n");

        return true;
    }

    private function copyFile($sourcePath)
    {
        // check filename
        $sourceFilename = substr($sourcePath, strlen($this->config'template']));
        $destinationFilename = $sourceFilename;

        foreach ($this->vars as $key => $value)
        {
            $value = str_replace('.', DS, $value);
            $destinationFilename = str_replace($key, $value, $destinationFilename);
        }

        printf("create file \"%s\" ... ", $destinationFilename);
        $dirname = pathinfo($destinationFilename, PATHINFO_DIRNAME);
        $destinationDir = $this->config'output'] . $dirname;

        if (!is_dir($destinationDir))
        {
            mkdir($destinationDir, 0777, true);
        }
        if (!is_dir($destinationDir))
        {
            printf("ERROR: mkdir failure\n");
            return false;
        }

        $destinationPath = $this->config'output'] . $destinationFilename;
        $contents = file_get_contents($sourcePath);
        if ($contents == false)
        {
            printf("ERROR: file_get_contents failure\n");
            return false;
        }
        $stat = stat($sourcePath);

        foreach ($this->vars as $key => $value)
        {
            $contents = str_replace($key, $value, $contents);
        }

        if (file_put_contents($destinationPath, $contents) == false)
        {
            printf("ERROR: file_put_contents failure\n");
            return false;
        }
        chmod($destinationPath, $stat'mode']);

        printf("OK\n");
        return true;
    }

    private function getPaths($dir)
    {
        $files = array();
        $dir = rtrim($dir, "/\\") . DS;
        $dh = opendir($dir);
        if ($dh == false)
        {
            return $files;
        }

        while (($file = readdir($dh)) !== false)
        {
            if ($file == "." || $file == ".." || $file == ".DS_Store")
            {
                continue;
            }

            $path = $dir . $file;
            if (is_dir($path))
            {
                $files = array_merge($files, $this->getPaths($path));
            }
            elseif (is_file($path))
            {
                $files] = $path;
            }
        }
        closedir($dh);
        return $files;
    }

    function exec_sys_cmd($cmd_str)
    {
        echo "exec: $cmd_str\n";
        system($cmd_str, $retval);
        echo "*******************\n";
        return $retval;
    }

    // function modifyFiles()
    // {
    //     $projectPath = $this->config'output'];
    //     $files = array();
    //     findFiles($projectPath, $files);
    //     foreach ($files as $src)
    //     {
    //         $contents = file_get_contents($src);
    //         if ($contents == false)
    //         {
    //             continue;
    //         }
    //         $flagReplace = false;
    //         foreach ($this->vars as $key => $value)
    //         {
    //             $pos = strpos($contents, $key);
    //             if ($pos==false)
    //             {
    //                 continue;
    //             }
    //             $contents = str_replace($key, $value, $contents);
    //             $flagReplace = true;
    //         }
    //         if (!$flagReplace)
    //         {
    //             continue;
    //         }
    //         printf("modify file \"%s\" ... ", $src);
    //         $stat = stat($src);
    //         if (file_put_contents($src, $contents) == false)
    //         {
    //             printf("ERROR: file_put_contents failure\n");
    //             continue;
    //         }
    //         chmod($src, $stat'mode']);

    //         printf("OK\n");
    //     }
    // }

    private function fixFiles()
    {
        $cocosPath = $this->config'output'] . 'frameworks/cocos2d-x';
        $files = $this->config'extrawork']"FilesNeedModify"];
        foreach ($files as $file)
        {
            $src = $cocosPath . $file;
            printf("fix file \"%s\" ... ", $src);
            $contents = file_get_contents($src);
            if ($contents == false)
            {
                printf("ERROR: file_get_contents failure\n");
                continue;
            }
            // $stat = stat($src);

            $contents = str_replace($file, $file, $contents);

            if (file_put_contents($src, $contents) == false)
            {
                printf("ERROR: file_put_contents failure\n");
                continue;
            }
            // chmod($dest, $stat'mode']);

            printf("OK\n");
        }

        return true;
    }

    private function replaceFiles()
    {
        $quickPath = QUICK_V3_ROOT;
        $cocosPath = $this->config'output'] . 'frameworks/cocos2d-x';
        $files = $this->config'extrawork']"FilesNeedReplace"];
        foreach ($files as $file)
        {
            $src = $quickPath . "/quick/lib/hotfix/" . $file;
            $dst = $cocosPath . $file;
            $this->replaceFile($src, $dst, "replace", false);

            printf("OK\n");
        }

        return true;
    }

    private function replaceFile($src, $dest, $cmd, $flagCheck)
    {
        foreach ($this->vars as $key => $value)
        {
            $value = str_replace('.', DS, $value);
            $dest = str_replace($key, $value, $dest);
        }
        printf($cmd . " file \"%s\" ... ", $dest);
        $destinationDir = pathinfo($dest, PATHINFO_DIRNAME);

        if (!is_dir($destinationDir))
        {
            mkdir($destinationDir, 0777, true);
        }
        if (!is_dir($destinationDir))
        {
            printf("ERROR: mkdir failure\n");
            return false;
        }

        $contents = file_get_contents($src);
        if ($contents == false)
        {
            printf("ERROR: file_get_contents failure\n");
            return false;
        }
        $stat = stat($src);

        if ($flagCheck)
        {
            foreach ($this->vars as $key => $value)
            {
                $contents = str_replace($key, $value, $contents);
            }
        }

        if (file_put_contents($dest, $contents) == false)
        {
            printf("ERROR: file_put_contents failure\n");
            return false;
        }
        chmod($dest, $stat'mode']);

        printf("OK\n");
        return true;
    }

    private function copyCocosFiles()
    {
        $quickPath = QUICK_V3_ROOT;
        $cocosPath = $this->config'output'] . 'frameworks/cocos2d-x';
        $files = array_merge( $this->config'cocos_files']'common'],
                               $this->config'cocos_files']'lua'] );
        foreach ($files as $file)
        {
            $src = $quickPath . "/" . $file;
            if (!file_exists($src)) continue;
            $dst = $cocosPath . "/" . $file;
            $this->replaceFile($src, $dst, "create", false);
        }

        return true;
    }

    private function copyDir($srcPath, $dstPath, $flagCheck)
    {
        $files = array();
        findFiles($srcPath, $files);
        foreach ($files as $src)
        {
            $dest = str_replace($srcPath, $dstPath, $src);
            $this->replaceFile($src, $dest, "create", $flagCheck);
        }
    }

    private function copyTemplateSharedFiles()
    {
        $quickPath = QUICK_V3_ROOT . "/quick/templates/shared";
        $cocosPath = $this->config'output'];

        $dirname = "/res";
        $src = $quickPath . $dirname;
        $dst = $cocosPath . $dirname;
        $this->copyDir($src, $dst, true);

        $dirname = "/src";
        $src = $quickPath . $dirname;
        $dst = $cocosPath . $dirname;
        $this->copyDir($src, $dst, true);

        $dirname = "/frameworks";
        $src = $quickPath . $dirname;
        $dst = $cocosPath . $dirname;
        $this->copyDir($src, $dst, true);

        return true;
    }

    private function copyFrameworkFiles()
    {
        $quickPath = QUICK_V3_ROOT . "/quick";
        $cocosPath = $this->config'output'] . "src";

        $dirname = "/cocos";
        $src = $quickPath . $dirname;
        $dst = $cocosPath . $dirname;
        $this->copyDir($src, $dst, false);

        $dirname = "/framework";
        $src = $quickPath . $dirname;
        $dst = $cocosPath . $dirname;
        $this->copyDir($src, $dst, false);

        return true;
    }

    // private function copyRuntimeSources()
    // {
    //     $quickSrcPath = QUICK_V3_ROOT . "/quick/lib/runtime-src";
    //     $cocosPath = $this->config'output'] . "/frameworks/runtime-src";

    //     $dirname = "/Classes";
    //     $src = $quickSrcPath . $dirname;
    //     $dst = $cocosPath . $dirname;
    //     $this->copyDir($src, $dst, false);

    //     return true;
    // }

    private function copyQuickSources()
    {
        $quickSrcPath = QUICK_V3_ROOT . "/quick/lib";
        $cocosPath = $this->config'output'] . "/frameworks/runtime-src/Classes";

        $dirname = "/quick-src";
        $src = $quickSrcPath . $dirname;
        $dst = $cocosPath . $dirname;
        $this->copyDir($src, $dst, false);

        return true;
    }
}



```



才发现这样修改是改不完的,编译等一些列工具还是不能使用。。。。晕啊。。。
修改php.ini设置variables_order = "EGPCS"可以解决全部问题,其他都是环境变量没有的,就是配置一下。

请详细说明一下情况,比如有什么报错信息等

已经解决。。。修改下面文件:
quick/bin/lib/create_project.php

改为:

<?php

require_once(__DIR__ . '/init.php');


define('DS_CREATOR', DIRECTORY_SEPARATOR);
define('BIN_DIR_CREATOR', rtrim(dirname(dirname(__DIR__)), '/\\'));

if (DS_CREATOR == '/')
{
    define('QUICK_V3_ROOT', BIN_DIR_CREATOR . '/../..');
}
else
{
    define('QUICK_V3_ROOT', $_ENV'QUICK_V3_ROOT']);
}

class ProjectCreator
{
    private $config;
    private $options;
    private $validated = false;
    private $vars = array();

    function __construct(array $config, array $options)
    {
        $this->config = $config;
        $this->options = $options;
    }

    function validateConfig()
    {
        $isLite = $this->config'lite'];
        // check template
        $templatePath = rtrim($this->config'template'], "/\\");
        if ($isLite)
        {
            $templatePath = $templatePath . '-lite';
        }
        $templatePath = $templatePath . DS;
        if (!is_dir($templatePath))
        {
            printf("ERROR: invalid template path \"%s\"\n", $templatePath);
            return false;
        }
        if (!file_exists($templatePath . '../cocos2dx_files.json'))
        {
            printf("ERROR: not found cocos2dx_files.json in template path \"%s/..\"\n", $templatePath);
            return false;
        }
        $cocos_files = file_get_contents($templatePath . '../cocos2dx_files.json');
        $cocos_files = json_decode($cocos_files, true);
        if (!is_array($cocos_files) || empty($cocos_files'common']))
        {
            printf("ERROR: not found cocos2dx_files.json in template path \"%s/..\"\n", $templatePath);
            return false;
        }
        $this->config'template'] = $templatePath;
        $this->config'cocos_files'] = $cocos_files;

        // check package name
        $packageName = str_replace('-', '_', strtolower($this->config'package']));
        $parts = explode('.', $packageName);
        $packageName = array();
        for ($i = 0; $i < count($parts); $i++)
        {
            $parts$i] = preg_replace('/^a-z0-9_]/', '', $parts$i]);
            if (!empty($parts$i])) $packageName] = $parts$i];
        }
        if (count($packageName) < 2)
        {
            printf("ERROR: invalid package name \"%s\"\n", implode('.', $packageName));
            return false;
        }

        $lastname = $packageName;
        array_pop($packageName);
        $packageName = implode('.', $packageName);
        $this->config'package'] = $packageName . '.' . $lastname;
        $this->config'packageLastName'] = $lastname;
        $this->config'packageFullName'] = $packageName . '.' . $lastname;
        $this->config'packageModuleName'] = $packageName;

        // check output path
        if (empty($this->config'output']))
        {
            $curpath = rtrim(getcwd(), '/\\');
            $this->config'output'] = $curpath . DS . $lastname . DS;
            $this->config'cocos_output'] = $curpath;
            $this->config'cocos_project'] = $lastname;
        }
        else
        {
            $outpath = rtrim($this->config'output'], '/\\');
            $this->config'output'] = $outpath . DS;
            $pos = strrpos($outpath, DS);
            if ($pos != false)
            {
                $this->config'cocos_output'] = substr($outpath, 0, $pos);
                $this->config'cocos_project'] = substr($outpath, $pos+1);
            }
            else
            {
                $this->config'cocos_output'] = $outpath;
                $this->config'cocos_project'] = $lastname;
            }
        }
        if (!$this->config'force'] && (is_dir($this->config'output']) || file_exists($this->config'output'])))
        {
            printf("ERROR: project path \"%s\" exists\n", $this->config'output']);
            return false;
        }

        // check screen orientation
        $orientation = strtolower($this->config'orientation']);
        if ($orientation != 'landscape' && $orientation != 'portrait')
        {
            printf("ERROR: invalid screen orientation \"%s\"\n", $orientation);
            return false;
        }
        $this->config'orientation'] = $orientation;

        // check more configs
        if ($this->config'noproj'] && $this->config'onlyproj'])
        {
            print("ERROR: noproj and onlyproj cannot enable at the same time\n");
            return false;
        }

        if ($this->options'extracmd'])
        {
            $this->config'extracmd'] = $this->options'extracmd'];
        }

        if (!$this->config'quiet'])
        {
            dumpConfig($this->config, $this->options);
        }
        $this->validated = true;
        return true;
    }

    function run()
    {
        if (!$this->validated)
        {
            print("ERR: invalid config\n");
            return false;
        }

        // create project dir
        // if (!is_dir($this->config'output'])) mkdir($this->config'output']);
        // if (!is_dir($this->config'output']))
        // {
        //     printf("ERROR: create project dir \"%s\" failure\n", $this->config'output']);
        //     return false;
        // }

        // prepare contents
        $this->vars'__TEMPLATE_PATH__'] = $this->config'template'];
        $this->vars'__PROJECT_COCOS_NAME__'] = $this->config'cocos_project'];
        $this->vars'__PROJECT_PACKAGE_MODULE_NAME__'] = $this->config'packageModuleName'];
        $this->vars'__PROJECT_PACKAGE_MODULE_NAME_L__'] = strtolower($this->config'packageModuleName']);
        $this->vars'__PROJECT_PACKAGE_FULL_NAME__'] = $this->config'packageFullName'];
        $this->vars'__PROJECT_PACKAGE_FULL_NAME_L__'] = strtolower($this->config'packageFullName']);
        $this->vars'__PROJECT_PACKAGE_LAST_NAME__'] = $this->config'packageLastName'];
        $this->vars'__PROJECT_PACKAGE_LAST_NAME_L__'] = strtolower($this->config'packageLastName']);
        $this->vars'__PROJECT_PACKAGE_LAST_NAME_UF__'] = ucfirst(strtolower($this->config'packageLastName']));
        $this->vars'__PROJECT_PATH__'] = $this->config'output'];
        $this->vars'__SCREEN_ORIENTATION__'] = $this->config'orientation'];
        $this->vars'__SCREEN_ORIENTATION_L__'] = strtolower($this->config'orientation']);
        $this->vars'__SCREEN_ORIENTATION_UF__'] = ucfirst(strtolower($this->config'orientation']));
        if ($this->config'orientation'] == 'landscape')
        {
            $this->vars'__SCREEN_WIDTH__'] = '960';
            $this->vars'__SCREEN_HEIGHT__'] = '640';
            $this->vars'__SCREEN_ORIENTATION_QUICK__'] = 'FIXED_HEIGHT';
        }
        else
        {
            $this->vars'__SCREEN_WIDTH__'] = '640';
            $this->vars'__SCREEN_HEIGHT__'] = '960';
            $this->vars'__SCREEN_ORIENTATION_QUICK__'] = 'FIXED_WIDTH';
        }

        if ($this->config'orientation'] == 'landscape')
        {
            $this->vars'__SCREEN_ORIENTATION_IOS__'] = "UIInterfaceOrientationLandscapeRight\nUIInterfaceOrientationLandscapeLeft";
        }
        else
        {
            $this->vars'__SCREEN_ORIENTATION_IOS__'] = 'UIInterfaceOrientationPortrait';
        }

        if ($this->config'orientation'] == 'landscape')
        {
            $this->vars'__SCREEN_ORIENTATION_CONFIG_JSON__'] = 'true';
        }
        else
        {
            $this->vars'__SCREEN_ORIENTATION_CONFIG_JSON__'] = 'false';
        }

        // $consoleDir = $_ENV'COCOS_CONSOLE_ROOT'];
        // // call cocos to create new project
        // $cmd_str = $consoleDir . "/cocos new " . $this->config'cocos_project']
        //             . " -p " . $this->vars'__PROJECT_PACKAGE_FULL_NAME__']
        //             . " -l lua -t runtime -d " . $this->config'cocos_output'];
        // if ($this->config'extracmd'])
        // {
        //     $cmd_str = $cmd_str . ' ' . str_replace('#', ' ', $this->config'extracmd']);
        // }
        // $this->exec_sys_cmd($cmd_str);

        // copy files
        $paths = $this->getPaths($this->config'template']);
        foreach ($paths as $sourcePath)
        {
            $sourceFilename = substr($sourcePath, strlen($this->config'template']));
            if ($sourceFilename == 'cocos-project-template.json') continue;
            if ($this->config'noproj'])
            {
                if (substr($sourceFilename, 0, 5) == 'proj.' || substr($sourceFilename, 0, 8) == 'sources/')
                {
                    continue;
                }
            }
            else if ($this->config'onlyproj'])
            {
                if (substr($sourceFilename, 0, 5) != 'proj.' && substr($sourceFilename, 0, 8) != 'sources/' && substr($sourceFilename, 0, 10) != 'run-mac.sh' )
                {
                    continue;
                }
            }
            if (!$this->copyFile($sourcePath)) return false;
        }

        $this->copyTemplateSharedFiles();
        $this->copyFrameworkFiles();
        // $this->copyRuntimeSources();
        if (!$this->config'lite'])
        {
            $this->copyCocosFiles();
            $this->copyQuickSources();
            $this->fixFiles();
            $this->replaceFiles();
        }
        // $this->modifyFiles();

        print("\n\n");

        return true;
    }

    private function copyFile($sourcePath)
    {
        // check filename
        $sourceFilename = substr($sourcePath, strlen($this->config'template']));
        $destinationFilename = $sourceFilename;

        foreach ($this->vars as $key => $value)
        {
            $value = str_replace('.', DS, $value);
            $destinationFilename = str_replace($key, $value, $destinationFilename);
        }

        printf("create file \"%s\" ... ", $destinationFilename);
        $dirname = pathinfo($destinationFilename, PATHINFO_DIRNAME);
        $destinationDir = $this->config'output'] . $dirname;

        if (!is_dir($destinationDir))
        {
            mkdir($destinationDir, 0777, true);
        }
        if (!is_dir($destinationDir))
        {
            printf("ERROR: mkdir failure\n");
            return false;
        }

        $destinationPath = $this->config'output'] . $destinationFilename;
        $contents = file_get_contents($sourcePath);
        if ($contents == false)
        {
            printf("ERROR: file_get_contents failure\n");
            return false;
        }
        $stat = stat($sourcePath);

        foreach ($this->vars as $key => $value)
        {
            $contents = str_replace($key, $value, $contents);
        }

        if (file_put_contents($destinationPath, $contents) == false)
        {
            printf("ERROR: file_put_contents failure\n");
            return false;
        }
        chmod($destinationPath, $stat'mode']);

        printf("OK\n");
        return true;
    }

    private function getPaths($dir)
    {
        $files = array();
        $dir = rtrim($dir, "/\\") . DS;
        $dh = opendir($dir);
        if ($dh == false)
        {
            return $files;
        }

        while (($file = readdir($dh)) !== false)
        {
            if ($file == "." || $file == ".." || $file == ".DS_Store")
            {
                continue;
            }

            $path = $dir . $file;
            if (is_dir($path))
            {
                $files = array_merge($files, $this->getPaths($path));
            }
            elseif (is_file($path))
            {
                $files] = $path;
            }
        }
        closedir($dh);
        return $files;
    }

    function exec_sys_cmd($cmd_str)
    {
        echo "exec: $cmd_str\n";
        system($cmd_str, $retval);
        echo "*******************\n";
        return $retval;
    }

    // function modifyFiles()
    // {
    //     $projectPath = $this->config'output'];
    //     $files = array();
    //     findFiles($projectPath, $files);
    //     foreach ($files as $src)
    //     {
    //         $contents = file_get_contents($src);
    //         if ($contents == false)
    //         {
    //             continue;
    //         }
    //         $flagReplace = false;
    //         foreach ($this->vars as $key => $value)
    //         {
    //             $pos = strpos($contents, $key);
    //             if ($pos==false)
    //             {
    //                 continue;
    //             }
    //             $contents = str_replace($key, $value, $contents);
    //             $flagReplace = true;
    //         }
    //         if (!$flagReplace)
    //         {
    //             continue;
    //         }
    //         printf("modify file \"%s\" ... ", $src);
    //         $stat = stat($src);
    //         if (file_put_contents($src, $contents) == false)
    //         {
    //             printf("ERROR: file_put_contents failure\n");
    //             continue;
    //         }
    //         chmod($src, $stat'mode']);

    //         printf("OK\n");
    //     }
    // }

    private function fixFiles()
    {
        $cocosPath = $this->config'output'] . 'frameworks/cocos2d-x';
        $files = $this->config'extrawork']"FilesNeedModify"];
        foreach ($files as $file)
        {
            $src = $cocosPath . $file;
            printf("fix file \"%s\" ... ", $src);
            $contents = file_get_contents($src);
            if ($contents == false)
            {
                printf("ERROR: file_get_contents failure\n");
                continue;
            }
            // $stat = stat($src);

            $contents = str_replace($file, $file, $contents);

            if (file_put_contents($src, $contents) == false)
            {
                printf("ERROR: file_put_contents failure\n");
                continue;
            }
            // chmod($dest, $stat'mode']);

            printf("OK\n");
        }

        return true;
    }

    private function replaceFiles()
    {
        $quickPath = QUICK_V3_ROOT;
        $cocosPath = $this->config'output'] . 'frameworks/cocos2d-x';
        $files = $this->config'extrawork']"FilesNeedReplace"];
        foreach ($files as $file)
        {
            $src = $quickPath . "/quick/lib/hotfix/" . $file;
            $dst = $cocosPath . $file;
            $this->replaceFile($src, $dst, "replace", false);

            printf("OK\n");
        }

        return true;
    }

    private function replaceFile($src, $dest, $cmd, $flagCheck)
    {
        foreach ($this->vars as $key => $value)
        {
            $value = str_replace('.', DS, $value);
            $dest = str_replace($key, $value, $dest);
        }
        printf($cmd . " file \"%s\" ... ", $dest);
        $destinationDir = pathinfo($dest, PATHINFO_DIRNAME);

        if (!is_dir($destinationDir))
        {
            mkdir($destinationDir, 0777, true);
        }
        if (!is_dir($destinationDir))
        {
            printf("ERROR: mkdir failure\n");
            return false;
        }

        $contents = file_get_contents($src);
        if ($contents == false)
        {
            printf("ERROR: file_get_contents failure\n");
            return false;
        }
        $stat = stat($src);

        if ($flagCheck)
        {
            foreach ($this->vars as $key => $value)
            {
                $contents = str_replace($key, $value, $contents);
            }
        }

        if (file_put_contents($dest, $contents) == false)
        {
            printf("ERROR: file_put_contents failure\n");
            return false;
        }
        chmod($dest, $stat'mode']);

        printf("OK\n");
        return true;
    }

    private function copyCocosFiles()
    {
        $quickPath = QUICK_V3_ROOT;
        $cocosPath = $this->config'output'] . 'frameworks/cocos2d-x';
        $files = array_merge( $this->config'cocos_files']'common'],
                               $this->config'cocos_files']'lua'] );
        foreach ($files as $file)
        {
            $src = $quickPath . "/" . $file;
            if (!file_exists($src)) continue;
            $dst = $cocosPath . "/" . $file;
            $this->replaceFile($src, $dst, "create", false);
        }

        return true;
    }

    private function copyDir($srcPath, $dstPath, $flagCheck)
    {
        $files = array();
        findFiles($srcPath, $files);
        foreach ($files as $src)
        {
            $dest = str_replace($srcPath, $dstPath, $src);
            $this->replaceFile($src, $dest, "create", $flagCheck);
        }
    }

    private function copyTemplateSharedFiles()
    {
        $quickPath = QUICK_V3_ROOT . "/quick/templates/shared";
        $cocosPath = $this->config'output'];

        $dirname = "/res";
        $src = $quickPath . $dirname;
        $dst = $cocosPath . $dirname;
        $this->copyDir($src, $dst, true);

        $dirname = "/src";
        $src = $quickPath . $dirname;
        $dst = $cocosPath . $dirname;
        $this->copyDir($src, $dst, true);

        $dirname = "/frameworks";
        $src = $quickPath . $dirname;
        $dst = $cocosPath . $dirname;
        $this->copyDir($src, $dst, true);

        return true;
    }

    private function copyFrameworkFiles()
    {
        $quickPath = QUICK_V3_ROOT . "/quick";
        $cocosPath = $this->config'output'] . "src";

        $dirname = "/cocos";
        $src = $quickPath . $dirname;
        $dst = $cocosPath . $dirname;
        $this->copyDir($src, $dst, false);

        $dirname = "/framework";
        $src = $quickPath . $dirname;
        $dst = $cocosPath . $dirname;
        $this->copyDir($src, $dst, false);

        return true;
    }

    // private function copyRuntimeSources()
    // {
    //     $quickSrcPath = QUICK_V3_ROOT . "/quick/lib/runtime-src";
    //     $cocosPath = $this->config'output'] . "/frameworks/runtime-src";

    //     $dirname = "/Classes";
    //     $src = $quickSrcPath . $dirname;
    //     $dst = $cocosPath . $dirname;
    //     $this->copyDir($src, $dst, false);

    //     return true;
    // }

    private function copyQuickSources()
    {
        $quickSrcPath = QUICK_V3_ROOT . "/quick/lib";
        $cocosPath = $this->config'output'] . "/frameworks/runtime-src/Classes";

        $dirname = "/quick-src";
        $src = $quickSrcPath . $dirname;
        $dst = $cocosPath . $dirname;
        $this->copyDir($src, $dst);

        return true;
    }
}



```

哎,有没有检查过才发的版本哦。。。。晕死。。。。

其实我不会php的。。。。

还是有一堆warning。。。。

PHP Warning: Missing argument 3 for ProjectCreator::copyDir(), called in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 570 and defined in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 497
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/Android.mk” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/anysdk.ini” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/api/AgentManager.lua” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/api/lua_anysdk_auto_api.lua” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/api/ProtocolAds.lua” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/api/ProtocolAnalytics.lua” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/api/ProtocolIAP.lua” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/api/ProtocolPush.lua” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/api/ProtocolSocial.lua” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/api/ProtocolUser.lua” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/android/Android.mk” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/android/lib/armeabi/libPluginProtocolStatic.a” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/android/lib/armeabi-v7a/libPluginProtocolStatic.a” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/android/lib/x86/libPluginProtocolStatic.a” … OK
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/android/libPluginProtocol.jar” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/android/PluginJavaData.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/android/PluginJniHelper.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/android/PluginJniMacros.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/android/PluginUtils.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/include/AgentManager.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/include/PluginFactory.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/include/PluginManager.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/include/PluginParam.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/include/PluginProtocol.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/include/ProtocolAds.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/include/ProtocolAnalytics.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/include/ProtocolIAP.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/include/ProtocolPush.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/include/ProtocolShare.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/include/ProtocolSocial.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/protocols/include/ProtocolUser.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/src/AnySDKListener.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/src/AnySDKListener.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/src/javaactivity.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/src/lua_anysdk_auto.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/src/lua_anysdk_auto.hpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/src/lua_anysdk_manual.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/anysdk/src/lua_anysdk_manual.hpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/apptools/HelperFunc.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/apptools/HelperFunc.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/cocos2dx_extra.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/crypto/base64/libbase64.c” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/crypto/base64/libbase64.h” … OK
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/crypto/CCCrypto.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/crypto/CCCrypto.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/crypto/md5/md5.c” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/crypto/md5/md5.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/Android.mk” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/cocos2dFilters.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCBlurFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCBlurFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCBrightnessFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCBrightnessFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCContrastFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCContrastFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCCustomFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCCustomFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCDropShadowFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCDropShadowFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCExposureFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCExposureFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCGammaFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCGammaFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCGrayFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCGrayFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCHazeFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCHazeFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCHueFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCHueFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCMaskFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCMaskFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCRGBFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCRGBFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCSaturationFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCSaturationFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCSepiaFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCSepiaFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCSharpenFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCSharpenFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCTestFilter.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/filters/CCTestFilter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/nodes/CCFilteredSprite.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/nodes/CCFilteredSprite.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_blur_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_brightness_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_colorramp_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_contrast_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_drop_shadow_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_drop_shadow_vert.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_emboss_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_embossmov_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_exposure_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_gamma_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_gaussian_blur_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_gaussian_hblur_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_gaussian_vblur_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_grass_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_gray_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_haze_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_hblur_vert.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_hue_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_motion_blur_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_motion_blur_vert.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_rgb_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_saturation_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_sepia_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_sharpen_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_sharpen_vert.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_test_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_test_vert.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_vblur_vert.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShader_zoom_blur_frag.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShaders.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/ccFilterShaders.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_bloom.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_Blur.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_celShading.fsh” … OK
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_ColorBars.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_ColorBars.vsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_edgeDetection.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_Flower.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_greyScale.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_Heart.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_HorizontalColor.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_Julia.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_lensFlare.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_Mandelbrot.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_Monjori.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_MultiTexture.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_MultiTexture.vsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_Noisy.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_normal.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_outline.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_Plasma.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_sepia.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/example_Twist.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/FilterShaders.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/FilterShaders.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/shadertoy_FireBall.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/shadertoy_Glow.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/filters/shaders/shadertoy_LensFlare.fsh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/luabinding/build.bat” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/luabinding/build.sh” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/luabinding/cocos2dx_extra_ios_iap_luabinding.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/luabinding/cocos2dx_extra_ios_iap_luabinding.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/luabinding/cocos2dx_extra_ios_iap_luabinding.tolua” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/luabinding/cocos2dx_extra_luabinding.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/luabinding/cocos2dx_extra_luabinding.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/luabinding/cocos2dx_extra_luabinding.tolua” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/luabinding/HelperFunc_luabinding.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/luabinding/HelperFunc_luabinding.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/luabinding/HelperFunc_luabinding.tolua” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/luabinding/lua_cocos2dx_extension_filter_auto.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/luabinding/lua_cocos2dx_extension_filter_auto.hpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/native/CCAlertViewDelegate.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/native/CCNative.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/network/CCHTTPRequest.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/network/CCHTTPRequest.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/network/CCHTTPRequestDelegate.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/network/CCNetwork.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/network/CCNetwork.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/android/CCCryptoAndroid.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/android/CCHTTPRequestAndroid.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/android/CCNativeAndroid.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/android/CCNetworkAndroid.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/CCCryptoIOS.mm” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/CCNative.mm” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/CCNativeIOS.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/CCNativeIOS.mm” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/CCStore.mm” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/CCStoreIOS.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/CCStoreIOS.mm” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/CCStorePaymentTransactionWrapper.mm” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/CCStoreReceiptVerifyRequestIOS.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/CCStoreReceiptVerifyRequestIOS.mm” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/json/SBJSON.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/json/SBJSON.m” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/json/SBJsonBase.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/json/SBJsonBase.m” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/json/SBJsonParser.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/json/SBJsonParser.m” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/json/SBJsonWriter.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/json/SBJsonWriter.m” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/openudid/OpenUDIDIOS.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios/openudid/OpenUDIDIOS.m” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios_mac/CCNetworkIOSMac.mm” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios_mac/ReachabilityIOSMac.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/ios_mac/ReachabilityIOSMac.m” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/mac/CCCryptoMac.mm” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/mac/CCNative.mm” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/mac/CCNativeMac.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/mac/CCNativeMac.mm” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/mac/openudid/OpenUDIDMac.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/mac/openudid/OpenUDIDMac.m” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/win32/CCCryptoWin32.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/win32/CCNative.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/win32/CCNativeWin32.cpp” … OK
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/win32/CCNativeWin32.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/win32/CCNativeWin32def.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/win32/CCNetworkWin32.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/win32/CCStorePaymentTransactionWrapper.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/wp8/CCCryptoWP8.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/wp8/CCNativeWP8.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/platform/wp8/CCNetworkWP8.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/store/CCStore.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/store/CCStorePaymentTransaction.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/store/CCStorePaymentTransaction.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/store/CCStorePaymentTransactionWrapper.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/store/CCStoreProduct.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/store/CCStoreProduct.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/store/CCStoreProductsRequestDelegate.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/extra/store/CCStoreTransactionObserver.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/Android.mk” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/cjson/fpconv.c” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/cjson/fpconv.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/cjson/lua_cjson.c” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/cjson/lua_cjson.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/cjson/strbuf.c” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/cjson/strbuf.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/debugger/debugger.c” … OK
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/debugger/debugger.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/debugger/ldt_debugger.lua” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/filesystem/lfs.c” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/filesystem/lfs.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/lpack/lpack.c” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/lpack/lpack.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/lsqlite3/lsqlite3.c” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/lsqlite3/lsqlite3.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/lsqlite3/sqlite3.c” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/lsqlite3/sqlite3.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/lua_extensions_more.c” … OK
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/lua_extensions_more.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/zlib/lua_zlib.c” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/lua_extensions/zlib/lua_zlib.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/ProjectConfig/ProjectConfig.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/ProjectConfig/ProjectConfig.h” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/ProjectConfig/SimulatorConfig.cpp” … OK
PHP Notice: Undefined variable: flagCheck in /Volumes/dev/cocos2d-x-quick-3.3rc1/quick/bin/lib/quick/ProjectCreator.php on line 504
create file “/Volumes/dev/cocos_projects/QuickGame//frameworks/runtime-src/Classes/quick-src/ProjectConfig/SimulatorConfig.h” … OK

感谢你的修改。但我看你修改的地方,是因为环境变量取不到,你作了一个变化而已。我不知道你为什么会取不到环境变量,或许跟你自己的php配置有关,之前有开发者改了自己php的ini就好了。
我们发版本是经过检查的,创建工程的脚本更是反复测试过多次。也许由于配置环境的变化会造成出错,但我们确实无法预料到每个人的情况。

这个警告是最后那行$this->copyDir($src, $dst)没有加上第三个参数,默认是false,所以没有影响

顺便说一下,不是所有的php版本都会有这个报警信息的

我是quick的newer,以前做C++的,环境是原生全新的,。。。。。

PHP环境问题,quick团队也够辛苦了,还是自己动手改改吧…