From 5dae74347c0ae919de7f1e1b744601f50fc38366 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 6 Feb 2026 03:27:11 +0000 Subject: [PATCH] Restore project-specific cmake/test-static-assert.c This file was wrongly extracted to the .core/build submodule during the build system extraction. It's a project-specific compile test used by CMakeLists.txt:185 and must remain in the project tree. Verified: make configure && make build && make package all pass. Co-Authored-By: Claude Opus 4.6 --- cmake/test-static-assert.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 cmake/test-static-assert.c diff --git a/cmake/test-static-assert.c b/cmake/test-static-assert.c new file mode 100644 index 00000000..3e612bbc --- /dev/null +++ b/cmake/test-static-assert.c @@ -0,0 +1,6 @@ +#include + +static_assert(1, "FAIL"); +int main(int argc, char *argv[]) { + return 0; +}