码迷,mamicode.com
首页 > 系统相关 > 详细

Linux deepin 下sublimes配置g++ openGL

时间:2016-12-08 13:57:02      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:art   nts   .net   c++   deepin   tin   variant   term   ubuntu   

参考 :http://blog.csdn.net/u010129448/article/details/47754623

ubuntu 下gnome只要将代码中deepin-terminal改为gnome终端就行

 

G++

 

{  


    "shell_cmd": "g++ ‘${file}‘ -o ‘${file_path}/${file_base_name}‘",  


    "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",  


    "working_dir": "${file_path}",  


    "selector": "source.c, source.c++",  
    "variants":  


    [  


        {  


            "name": "Build & Run",  


            "shell_cmd": " deepin-terminal -e bash -c \"g++ ‘${file}‘ -o ‘${file_path}/${file_base_name}‘ ; ‘${file_path}/${file_base_name}‘ ; read -p ‘\nPress ENTER or type command to continue...‘\""  


        },  


  


        {  


            "name": "Build Only",  


            "shell_cmd": "g++ ‘${file}‘ -o ‘${file_path}/${file_base_name}‘"  


        },  


  


        {  


            "name": "Run Only",  


            "shell_cmd": " deepin-terminal -e bash -c \"‘${file_path}/${file_base_name}‘ ; read -p ‘\nPress ENTER or type command to continue...‘\""  


        }  


    ]  


} 

  

 

 

openGL

 

{  


    "shell_cmd": "g++ ‘${file}‘ -o ‘${file_path}/${file_base_name}‘ -lglut -lGL -lGLU",  


    "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",  


    "working_dir": "${file_path}",  


    "selector": "source.c, source.c++",  


  


    "variants":  


    [  


        {  


            "name": "Build & Run",  


            "shell_cmd": " deepin-terminal -e bash -c \"g++ ‘${file}‘ -o ‘${file_path}/${file_base_name}‘ -lglut -lGL -lGLU; ‘${file_path}/${file_base_name}‘ ; read -p ‘\nPress ENTER or type command to continue...‘\""  


        },  


  


        {  


            "name": "Build Only",  


            "shell_cmd": "g++ ‘${file}‘ -o ‘${file_path}/${file_base_name}‘ -lglut -lGL -lGLU"  


        },  


  


        {  


            "name": "Run Only",  


            "shell_cmd": " deepin-terminal -e bash -c \"‘${file_path}/${file_base_name}‘ ; read -p ‘\nPress ENTER or type command to continue...‘\""  


        }  


    ]  


}  

  

 

Linux deepin 下sublimes配置g++ openGL

标签:art   nts   .net   c++   deepin   tin   variant   term   ubuntu   

原文地址:http://www.cnblogs.com/IMGavin/p/6144648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!