File: main.cpp

package info (click to toggle)
e-antic 2.1.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,444 kB
  • sloc: cpp: 18,073; ansic: 6,415; python: 1,034; makefile: 428; sh: 36
file content (14 lines) | stat: -rw-r--r-- 274 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <flint/flint.h>

#include "../e-antic/config.h"

#define CATCH_CONFIG_RUNNER
#include "external/catch2/single_include/catch2/catch.hpp"

int main( int argc, char* argv[] ) {
  int result = Catch::Session().run( argc, argv );

  flint_cleanup();

  return result;
}