restructure project

This commit is contained in:
2023-08-13 11:59:13 +02:00
parent b4836847f5
commit 50c17e8ed1
210 changed files with 471 additions and 422 deletions

27
src/ServerMain.cpp Normal file
View File

@@ -0,0 +1,27 @@
//============================================================================
// 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;
}