This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
# Copyright (c) 2012 SjB <[email protected]>. All Rights Reserved. | |
dll_name = 'DLL_DEFAULT_NAME' | |
srcs = [] | |
external_libs = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
# Copyright © 2012 SjB <[email protected]>. All Rights Reserved. | |
import os | |
from waflib import Options | |
APPNAME = "" | |
VERSION = "0.0.1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file AssemblyInfo.cs.in | |
* | |
* encoding: utf-8 | |
* Copyright © 2012 SjB <[email protected]>. All Rights Reserved. | |
* | |
*/ | |
using System.Reflection; | |
using System.Runtime.CompilerServices; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"working_dir": "${project_path}", | |
"cmd": ["${project_path:.}/waf", "build"], | |
"selector": "source.cs", | |
"file_regex": "^\\.*/(.*)\\((\\d+),(\\d+)\\):\\s*(.*)$", | |
"variants": | |
[ | |
{ | |
"cmd": ["${project_path:.}/waf", "configure"], | |
"name": "Configure" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"build_systems": | |
[ | |
{ | |
"cmd": | |
[ | |
"${project_path:.}/waf", | |
"${file_name}" | |
], | |
"name": "waf", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cmd": ["msbuild"], | |
"path": "C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319", | |
"working_dir": "${project_path:${folder}}", | |
"file_regex": "^ (.*)\\(([0-9]*),([0-9]*)" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
# Copyright © 2012 SjB <[email protected]>. All Rights Reserved. | |
import os, shutil | |
from waflib.TaskGen import feature, extension, after, before | |
from waflib.Task import Task | |
from waflib.Configure import conf | |
from waflib.Tools import ccroot |