summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-02-25 21:35:50 -0500
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-02-25 21:35:50 -0500
commit84830c81c9e0188c840d13b99e077d557f210c21 (patch)
treeecc1c17b0dfec4a3fc4fdc657a4ee4291fddc22b /source
parent76b511c7fecac26e305600f3a2274d1039e62b67 (diff)
feat: Support for menuconfig & genconfig
Support for menuconfig and genconfg as targets in cmake.
Diffstat (limited to 'source')
-rw-r--r--source/test.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/test.c b/source/test.c
new file mode 100644
index 0000000..eac9f91
--- /dev/null
+++ b/source/test.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+#include "generated.h"
+
+int main(void) {
+ printf("CONFIG_AGE: %d\n", CONFIG_AGE);
+ printf("CONFIG_NAME: %s\n", CONFIG_NAME);
+}
+