zoukankan      html  css  js  c++  java
  • 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 '
    Press 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 '
    Press 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 '
    Press 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 '
    Press ENTER or type command to continue...'""  
            }  
        ]  
    } 
  • 相关阅读:
    学习进度(2)
    模拟退火 [JSOI2004]平衡点 / 吊打XXX
    快读快写 O3 优化
    卡特兰数(Catalan)公式、证明、代码、典例
    树状数组 :单点修改,区间查询
    倍增 [模板]最近公共祖先LCA
    对测 【模拟】
    对测 【离线DP+二分】
    模拟退火 (骗分算法)
    基础数论入门
  • 原文地址:https://www.cnblogs.com/IMGavin/p/6144648.html
Copyright © 2011-2022 走看看