annotate semiconginev2/platform/window.nim @ 1219:c61658d2d227 compiletime-tests

del: old test file
author sam <sam@basx.dev>
date Wed, 17 Jul 2024 21:03:30 +0700
parents 56781cc0fc7c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1191
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
1 when defined(linux):
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
2 include ./linux/window
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
3 elif defined(windows):
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
4 include ./windows/window
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
5 else:
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
6 {.error: "Unsupported platform".}
239adab121a3 sync from bedroom to office
sam <sam@basx.dev>
parents:
diff changeset
7