annotate semiconginev2/platform/window.nim @ 1222:3c3d4d7a8ecd compiletime-tests

did: cleanup config file
author sam <sam@basx.dev>
date Wed, 17 Jul 2024 21:08:15 +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