diff options
| author | gingerBill <bill@gingerbill.org> | 2022-11-04 11:39:54 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-11-04 11:39:54 +0000 |
| commit | b743f56fb98da4cf177eec71a3d6370dfbc78982 (patch) | |
| tree | c4382d1999e712e722aad20292cbd01cabe43b2c | |
| parent | 1fc3f6cb2effedd6d8e21c492d76c9c110f54bfc (diff) | |
Fix +build ignore
| -rw-r--r-- | core/sys/info/doc.odin | 2 | ||||
| -rw-r--r-- | core/text/i18n/doc.odin | 2 | ||||
| -rw-r--r-- | examples/all/all_vendor.odin | 2 | ||||
| -rw-r--r-- | vendor/commonmark/doc.odin | 2 |
4 files changed, 5 insertions, 3 deletions
diff --git a/core/sys/info/doc.odin b/core/sys/info/doc.odin index 81e437cf8..81c3fb342 100644 --- a/core/sys/info/doc.odin +++ b/core/sys/info/doc.odin @@ -13,7 +13,7 @@ CPU feature flags can be tested against `cpu_features`, where applicable, e.g. `if .aes in si.aes { ... }` */ -// +ignore +//+build ignore package sysinfo import "core:fmt" diff --git a/core/text/i18n/doc.odin b/core/text/i18n/doc.odin index cff1ce11f..ef619451e 100644 --- a/core/text/i18n/doc.odin +++ b/core/text/i18n/doc.odin @@ -1,4 +1,4 @@ -//+ignore +//+build ignore package i18n /* diff --git a/examples/all/all_vendor.odin b/examples/all/all_vendor.odin index 22be12ef9..bd5921e6a 100644 --- a/examples/all/all_vendor.odin +++ b/examples/all/all_vendor.odin @@ -10,6 +10,7 @@ import miniaudio "vendor:miniaudio" import PM "vendor:portmidi" import rl "vendor:raylib" import exr "vendor:OpenEXRCore" +import cgltf "vendor:cgltf" import SDL "vendor:sdl2" import SDLNet "vendor:sdl2/net" @@ -33,6 +34,7 @@ _ :: miniaudio _ :: PM _ :: rl _ :: exr +_ :: cgltf _ :: SDL _ :: SDLNet diff --git a/vendor/commonmark/doc.odin b/vendor/commonmark/doc.odin index f37dc8153..736048e56 100644 --- a/vendor/commonmark/doc.odin +++ b/vendor/commonmark/doc.odin @@ -1,4 +1,4 @@ -// +ignore +//+build ignore /* Bindings against CMark (https://github.com/commonmark/cmark) |