diff options
Diffstat (limited to 'libnitrokey.pro')
-rw-r--r-- | libnitrokey.pro | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libnitrokey.pro b/libnitrokey.pro index 8d223f5..4c49e5f 100644 --- a/libnitrokey.pro +++ b/libnitrokey.pro @@ -3,6 +3,7 @@ CONFIG += c++14 shared debug + TEMPLATE = lib TARGET = nitrokey @@ -32,6 +33,7 @@ HEADERS = \ $$PWD/include/stick20_commands.h \ $$PWD/NK_C_API.h + SOURCES = \ $$PWD/command_id.cc \ $$PWD/device.cc \ @@ -77,3 +79,12 @@ INCLUDEPATH = \ #DEFINES = +unix:!macx{ + # Install rules for QMake (CMake is preffered though) + headers.files = $$HEADERS + headers.path = /usr/local/include/libnitrokey/ + INSTALLS += headers + + libbin.path = /usr/local/lib + INSTALLS += libbin +} |