Merge branch 'develop'
This commit is contained in:
commit
bfb69cc441
|
@ -1,8 +1,7 @@
|
|||
/*
|
||||
* PyScModule.cpp
|
||||
* Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||
*
|
||||
* Created on: 08.06.2019
|
||||
* Author: eyck
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "PyScModule.h"
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
/*
|
||||
* PyScModule.h
|
||||
* Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||
*
|
||||
* Created on: 08.06.2019
|
||||
* Author: eyck
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#ifndef COMPONENTS_PYSCMODULE_H_
|
||||
|
|
|
@ -1 +1,7 @@
|
|||
#
|
||||
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
from .sccppyy import *
|
|
@ -1,3 +1,9 @@
|
|||
#
|
||||
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
import json
|
||||
import cppyy
|
||||
import os.path
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
'''
|
||||
Created on 02.01.2019
|
||||
#
|
||||
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
@author: eyck
|
||||
'''
|
||||
from cppyy import gbl as cpp
|
||||
from builtins import getattr
|
||||
import re
|
||||
|
|
6
setup.py
6
setup.py
|
@ -1,3 +1,9 @@
|
|||
#
|
||||
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
from setuptools import setup, Extension
|
||||
import os
|
||||
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
#
|
||||
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
import os.path
|
||||
import logging
|
||||
import cppyy
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
'''
|
||||
Created on 03.01.2019
|
||||
#
|
||||
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
@author: eyck
|
||||
'''
|
||||
from cppyy_backend._cppyy_generator import CppyyGenerator
|
||||
from clang.cindex import Config
|
||||
from pprint import pprint
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
#
|
||||
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
import json
|
||||
import cppyy
|
||||
import os.path
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
#
|
||||
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
import cppyy
|
||||
cppyy.add_include_path('.')
|
||||
cppyy.load_library('../lib/libsystemc.so.2.3.3')
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
'''
|
||||
Created on 01.01.2019
|
||||
#
|
||||
# Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
@author: eyck
|
||||
'''
|
||||
import unittest
|
||||
import json
|
||||
import cppyy
|
||||
|
|
Loading…
Reference in New Issue