From 8de0f7e042c8ac4ddaf513a7502ca8fa8cc54a35 Mon Sep 17 00:00:00 2001 From: pixl <8843371+PixlOne@users.noreply.github.com> Date: Fri, 15 May 2020 04:28:25 -0400 Subject: [PATCH] Set CMAKE_INSTALL_PREFIX to /usr Should fix #26 and (hopefully) any questions relating to missing libhiddp.so. --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 29fa7c2..22658b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,7 @@ cmake_minimum_required(VERSION 3.10) + +set(CMAKE_INSTALL_PREFIX /usr) + project(logiops) set(CMAKE_EXPORT_COMPILE_COMMANDS ON)