diff --git a/core/core.pro b/core/core.pro index 39cd07b..6fa834c 100644 --- a/core/core.pro +++ b/core/core.pro @@ -63,10 +63,13 @@ unix { target.path = /usr/bin dashboard.path = /usr/share/EMStudio/dashboards dashboard.files += src/gauges.qml - dashboard.files += Wizards/BenchTest.qml + wizards.path = /usr/share/EMStudio/wizards + wizards.files += wizards/BenchTest.qml + wizards.files += wizards/DecoderOffset.qml + wizards.files += wizards/wizard.qml config.path = /usr/share/EMStudio/definitions config.files += freeems.config.json - INSTALLS += target config dashboard + INSTALLS += target config dashboard wizards LIBS += -lqwt -lqjson -lGL -lGLU -lglut INCLUDEPATH += /usr/include/qwt DEFINES += GIT_COMMIT=$$system(git describe --dirty=-DEV --always) @@ -177,4 +180,6 @@ FORMS += src/mainwindow.ui \ SUBDIRS += plugins OTHER_FILES += \ README.md \ - Wizards/BenchTest.qml + wizards/BenchTest.qml \ + wizards/DecoderOffset.qml \ + wizards/wizard.qml diff --git a/core/Wizards/BenchTest.qml b/core/wizards/BenchTest.qml similarity index 100% rename from core/Wizards/BenchTest.qml rename to core/wizards/BenchTest.qml diff --git a/core/Wizards/DecoderOffset.qml b/core/wizards/DecoderOffset.qml similarity index 100% rename from core/Wizards/DecoderOffset.qml rename to core/wizards/DecoderOffset.qml diff --git a/core/Wizards/wizard.qml b/core/wizards/wizard.qml similarity index 100% rename from core/Wizards/wizard.qml rename to core/wizards/wizard.qml diff --git a/emstudio32.cross.nsi b/emstudio32.cross.nsi index 044c887..1741a9c 100644 --- a/emstudio32.cross.nsi +++ b/emstudio32.cross.nsi @@ -56,6 +56,10 @@ Section "EMStudio (Required)" ;No components page, name is not important File "core/decodersettings.json" SetOutPath "$INSTDIR\dashboards" File "core/src/gauges.qml" + SetOutPath "$INSTDIR\wizards" + File "core/src/wizards/BenchTest.qml" + File "core/src/wizards/DecoderOffset.qml" + File "core/src/wizards/wizard.qml" SetOutPath "$INSTDIR\plugins" !ifndef PLUGIN File "core/plugins/libfreeemsplugin.a" diff --git a/emstudio64.cross.nsi b/emstudio64.cross.nsi index 6f26180..1d22a2b 100644 --- a/emstudio64.cross.nsi +++ b/emstudio64.cross.nsi @@ -56,6 +56,10 @@ Section "EMStudio (Required)" ;No components page, name is not important File "core/decodersettings.json" SetOutPath "$INSTDIR\dashboards" File "core/src/gauges.qml" + SetOutPath "$INSTDIR\wizards" + File "core/src/wizards/BenchTest.qml" + File "core/src/wizards/DecoderOffset.qml" + File "core/src/wizards/wizard.qml" SetOutPath "$INSTDIR\plugins" !ifndef PLUGIN File "core/plugins/libfreeemsplugin.a"