summaryrefslogtreecommitdiff
path: root/Tests/ConfigSources/custom1.cpp.in
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/ConfigSources/custom1.cpp.in')
-rw-r--r--Tests/ConfigSources/custom1.cpp.in13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/ConfigSources/custom1.cpp.in b/Tests/ConfigSources/custom1.cpp.in
new file mode 100644
index 000000000..e5f21c783
--- /dev/null
+++ b/Tests/ConfigSources/custom1.cpp.in
@@ -0,0 +1,13 @@
+#ifdef CUSTOM_CFG_DEBUG
+int custom1_debug()
+{
+ return 0;
+}
+#endif
+
+#ifdef CUSTOM_CFG_OTHER
+int custom1_other()
+{
+ return 0;
+}
+#endif