Linux deepin 下sublimes配置g++ openGL

参考 :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...'\""  
        }  
    ]  
} 

原文链接: https://www.cnblogs.com/IMGavin/p/6144648.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    Linux deepin 下sublimes配置g++ openGL

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/245429

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月14日 上午12:49
下一篇 2023年2月14日 上午12:49

相关推荐