Files
build-cpp-cmkr/tests/templates/src/templates.cpp
T
2022-01-13 00:24:04 +01:00

14 lines
228 B
C++

#include <cstdio>
#if !defined(IS_APP)
#error Something went wrong with the template
#endif // IS_APP
int main() {
#if defined(APP_A)
puts("Hello from app A!");
#elif defined(APP_B)
puts("Hello from app B!");
#endif
}