mirror of https://github.com/KLayout/klayout.git
Proper naming of DLL's.
This commit is contained in:
parent
04f1a61bc5
commit
6b08680ee7
|
|
@ -4,9 +4,17 @@ include($$PWD/klayout.pri)
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
|
|
||||||
dlltarget.path = $$PREFIX
|
dlltarget.path = $$PREFIX
|
||||||
INSTALLS += dlltarget
|
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 {
|
} else {
|
||||||
|
|
||||||
target.path = $$PREFIX
|
target.path = $$PREFIX
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue