toxcore/auto_tests/monolith_test.cpp
iphydf 033965b8cc
Make the monolith test a C++ binary.
This way, developers compile toxcore, toxav, and toxencryptsave as C++ at
least once at home, reducing the likelyhood of running into travis
failures where we compile as C++ in the windows build.
2018-01-21 20:56:30 +00:00

17 lines
218 B
C++

/* Auto Tests: One instance.
*/
#define _DARWIN_C_SOURCE
#define _XOPEN_SOURCE 600
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "../other/monolith.h"
int main(int argc, char *argv[])
{
return 0;
}