[nostalgia] Remove dynamic library usage

Will make dynamically loaded Modules impossible, but they add complexity
and really aren't that useful...
This commit is contained in:
2020-12-17 20:08:02 -06:00
parent 7a837502a1
commit d09dc5cc01
8 changed files with 28 additions and 11 deletions

View File

@@ -2,7 +2,7 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
add_library(
NostalgiaStudio SHARED
NostalgiaStudio OBJECT
editor.cpp
wizard.cpp
module.cpp

View File

@@ -46,8 +46,8 @@ ox::Error model(T *io, NostalgiaStudioState *obj) {
}
struct NostalgiaStudioProfile {
QString appName;
QString orgName;
QString appName = "Nostalgia Studio";
QString orgName = "Drinking Tea";
QVector<QString> modulesPath;
};