diff options
Diffstat (limited to 'Tests/ConfigSources/custom1.cpp.in')
-rw-r--r-- | Tests/ConfigSources/custom1.cpp.in | 13 |
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 0000000..e5f21c7 --- /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 |