Advertisement
bueddl

sublime cmake build system

Sep 25th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. {
  2. "selector": "source.cpp",
  3. "shell_cmd": "cmake -DCMAKE_BUILD_TYPE=Release ..; make",
  4. "working_dir": "${project_path:${folder}}/build",
  5.  
  6. "variants": [
  7. { "name": "Debug Build",
  8. "shell_cmd": "cmake -DCMAKE_BUILD_TYPE=Debug ..; make",
  9. "working_dir": "${project_path:${folder}}/build",
  10. },
  11. ],
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement