mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
14 lines
228 B
C++
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
|
|
}
|