aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_defs/dotnet/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build_defs/dotnet/BUILD')
-rw-r--r--tools/build_defs/dotnet/BUILD17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/build_defs/dotnet/BUILD b/tools/build_defs/dotnet/BUILD
new file mode 100644
index 0000000000..0622f058b9
--- /dev/null
+++ b/tools/build_defs/dotnet/BUILD
@@ -0,0 +1,17 @@
+# Detect our platform,
+# mac os x
+config_setting(
+ name = "darwin",
+ values = {"host_cpu": "darwin"},
+)
+
+# linux amd64
+config_setting(
+ name = "linux",
+ values = {"host_cpu": "k8"},
+)
+
+config_setting(
+ name = "debug",
+ values = {"compilation_mode": "dbg"},
+)