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

相关文章:

  • 2021-09-18
  • 2021-12-05
  • 2021-04-17
  • 2022-12-23
  • 2022-12-23
  • 2021-05-08
  • 2021-05-03
猜你喜欢
  • 2021-05-30
  • 2022-12-23
  • 2022-12-23
  • 2021-11-20
  • 2022-12-23
  • 2021-11-20
  • 2021-06-27
相关资源
相似解决方案