27 lines
617 B
C++
27 lines
617 B
C++
//============================================================================
|
|
// Name : Tower.cpp
|
|
// Author : Persson
|
|
// Version :
|
|
// Copyright : Copyright
|
|
// Description : Hello World in C++, Ansi-style
|
|
//============================================================================
|
|
|
|
#if !defined(NDEBUG) && !defined(_WIN32)
|
|
#define BACKWARD_HAS_UNWIND 1
|
|
#define BACKWARD_HAS_DW 1
|
|
#endif
|
|
|
|
#include "td/misc/Backward.hpp"
|
|
|
|
#ifdef __ANDROID__
|
|
extern "C"
|
|
#endif
|
|
|
|
int main(int argc, const char* args[]) {
|
|
#if !defined(NDEBUG)
|
|
// setup signal handling
|
|
backward::SignalHandling sh;
|
|
#endif
|
|
|
|
return 0;
|
|
} |