From 97193fb253f3892e64d537b89eaa788a054cb118 Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Tue, 30 Jan 2018 14:17:31 +0100 Subject: Add QMake installation rules Signed-off-by: Szczepan Zalega --- libnitrokey.pro | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'libnitrokey.pro') 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 +} -- cgit v1.2.1