File: main.cpp

package info (click to toggle)
antimony 0.9.3-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,480 kB
  • sloc: cpp: 42,596; ansic: 28,661; python: 1,093; yacc: 128; lex: 114; sh: 90; makefile: 10
file content (15 lines) | stat: -rw-r--r-- 282 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <Python.h>

#define CATCH_CONFIG_RUNNER
#include <catch/catch.hpp>

#include "graph/proxy.h"
#include "graph/hooks/hooks.h"

int main(int argc, char** argv)
{
    Proxy::preInit();
    Hooks::preInit();
    Py_Initialize();
    return Catch::Session().run( argc, argv );
}