2017-08-21 02:33:45 +02:00
|
|
|
|
2017-08-26 22:44:31 +02:00
|
|
|
include($$PWD/klayout.pri)
|
|
|
|
|
|
2017-08-21 02:33:45 +02:00
|
|
|
TEMPLATE = lib
|
|
|
|
|
|
|
|
|
|
win32 {
|
2017-08-27 18:17:00 +02:00
|
|
|
|
2017-08-27 18:03:38 +02:00
|
|
|
dlltarget.path = $$PREFIX
|
|
|
|
|
INSTALLS += dlltarget
|
2017-08-27 18:17:00 +02:00
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
2017-08-21 02:33:45 +02:00
|
|
|
} else {
|
2017-08-27 18:17:00 +02:00
|
|
|
|
2017-08-27 18:03:38 +02:00
|
|
|
target.path = $$PREFIX
|
|
|
|
|
INSTALLS += target
|
2017-08-27 18:17:00 +02:00
|
|
|
|
2017-08-21 02:33:45 +02:00
|
|
|
}
|