Skip to content

Commit

Permalink
the plugin has been updated from QT Creator 4.15.2 to 5.0.3 (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Jarek authored and hcorg committed Mar 1, 2022
1 parent 15b7a1c commit a308cac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/kitaspect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void KitAspect::setAsn1Exe(Kit *k, const Utils::FilePath &v)
QVariant KitAspect::defaultValue(const Kit *k) const
{
Q_UNUSED(k);
const QString path = Core::ICore::libexecPath().toString() + QLatin1String("/asn1scc/asn1scc");
const QString path = Core::ICore::libexecPath().toString() + QLatin1String("/asn1scc/asn1.exe");
return path;
}

Expand Down
2 changes: 1 addition & 1 deletion src/libraries/componentimporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Utils::FilePaths ComponentImporter::copyFilesToProject()

for (const auto &file : m_sourceFiles) {
const QString filePath = file.path();
QString target = targetFileName(filePath);
const QString target = targetFileName(filePath);

createTargetDir(m_targetDir, QFileInfo(target).absolutePath());
copyFile(filePath, target);
Expand Down
2 changes: 1 addition & 1 deletion templates/wizards/projects/asn1acn/handleAsn1AcnBuild.pri
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#######################################################################

isEmpty(ASN1SCC): ASN1SCC = $$(ASN1SCC)
isEmpty(ASN1SCC): ASN1SCC = asn1scc
isEmpty(ASN1SCC): ASN1SCC = asn1.exe
isEmpty(ASN1SCC_PRODUCTS_DIR): ASN1SCC_PRODUCTS_DIR = $$shell_path($${OUT_PWD}/asn1sccGenerated)
isEmpty(ASN1SCC_COMMON_OPTIONS): ASN1SCC_COMMON_OPTIONS = --acn-enc --field-prefix AUTO --type-prefix T
isEmpty(ASN1SCC_C_OPTIONS): ASN1SCC_C_OPTIONS = --c-lang $${ASN1SCC_COMMON_OPTIONS}
Expand Down

0 comments on commit a308cac

Please sign in to comment.