Proper naming of DLL's.

This commit is contained in:
Matthias Koefferlein 2017-08-27 18:17:00 +02:00
parent 04f1a61bc5
commit 6b08680ee7
1 changed files with 8 additions and 0 deletions

View File

@ -4,9 +4,17 @@ include($$PWD/klayout.pri)
TEMPLATE = lib
win32 {
dlltarget.path = $$PREFIX
INSTALLS += dlltarget
# to avoid the major version being appended to the dll name - in this case -lxyz won't link it again
# because the library is called xyx0.dll.
CONFIG += skip_target_version_ext
} else {
target.path = $$PREFIX
INSTALLS += target
}