dynemup include

This commit is contained in:
wrapper 2026-03-29 14:34:36 +07:00
parent 2ad2c7b706
commit 446d280508
2 changed files with 11 additions and 9 deletions

View file

@ -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
}
}
}

View file

@ -1 +1,3 @@
# Placeholder
from .dynemup import Dynemu
__all__ = ['Dynemu']