diff options
author | Karl G <carlos22@users.noreply.github.com> | 2018-07-27 00:56:39 +0200 |
---|---|---|
committer | Itay Grudev <itay-grudev@users.noreply.github.com> | 2018-07-27 01:56:39 +0300 |
commit | a36a327ddf856fe94fb631290a4313baf28bf908 (patch) | |
tree | f7fc3bc73a18cbc2ec99ed2f55c5b85994aba2b5 | |
parent | v3.0.10 Code cleanup (diff) | |
download | singleapplication-a36a327ddf856fe94fb631290a4313baf28bf908.tar.xz |
replace -lAdvapi32 with -ladvapi32 which broke the build on mxe (#43)
This should not break any windows builds as the windows filesystem is case-insensitive.
-rw-r--r-- | singleapplication.pri | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/singleapplication.pri b/singleapplication.pri index a82ff28..7ef1efe 100644 --- a/singleapplication.pri +++ b/singleapplication.pri @@ -9,7 +9,7 @@ INCLUDEPATH += $$PWD win32 { msvc:LIBS += Advapi32.lib - gcc:LIBS += -lAdvapi32 + gcc:LIBS += -ladvapi32 } DISTFILES += \ |