dynemup include
This commit is contained in:
parent
2ad2c7b706
commit
446d280508
2 changed files with 11 additions and 9 deletions
16
.vscode/cmake-variants.json
vendored
16
.vscode/cmake-variants.json
vendored
|
|
@ -8,8 +8,8 @@
|
|||
"long": "Build with no optimizations and debugging information",
|
||||
"buildType": "Debug",
|
||||
"settings": {
|
||||
"BUILD_SHARED_LIBS": "ON",
|
||||
"DYNEMU_PYTHON": "ON"
|
||||
"BUILD_SHARED_LIBS": true,
|
||||
"DYNEMU_PYTHON": true
|
||||
}
|
||||
},
|
||||
"Release": {
|
||||
|
|
@ -17,8 +17,8 @@
|
|||
"long": "Build with optimizations and some debuging information",
|
||||
"buildType": "Release",
|
||||
"settings": {
|
||||
"BUILD_SHARED_LIBS": "ON",
|
||||
"DYNEMU_PYTHON": "ON"
|
||||
"BUILD_SHARED_LIBS": true,
|
||||
"DYNEMU_PYTHON": true
|
||||
}
|
||||
},
|
||||
"DebugStatic": {
|
||||
|
|
@ -26,8 +26,8 @@
|
|||
"long": "Build with no optimizations and debugging information",
|
||||
"buildType": "Debug",
|
||||
"settings": {
|
||||
"BUILD_SHARED_LIBS": "OFF",
|
||||
"DYNEMU_PYTHON": "ON"
|
||||
"BUILD_SHARED_LIBS": false,
|
||||
"DYNEMU_PYTHON": true
|
||||
}
|
||||
},
|
||||
"ReleaseStatic": {
|
||||
|
|
@ -35,8 +35,8 @@
|
|||
"long": "Build with optimizations and some debuging information",
|
||||
"buildType": "Release",
|
||||
"settings": {
|
||||
"BUILD_SHARED_LIBS": "OFF",
|
||||
"DYNEMU_PYTHON": "ON"
|
||||
"BUILD_SHARED_LIBS": false,
|
||||
"DYNEMU_PYTHON": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1,3 @@
|
|||
# Placeholder
|
||||
from .dynemup import Dynemu
|
||||
|
||||
__all__ = ['Dynemu']
|
||||
Loading…
Add table
Add a link
Reference in a new issue