From 86c3c3f7dbdc6d791ae53a9786057a655a4e8b62 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Sun, 16 Jun 2019 19:33:30 +0000 Subject: [PATCH] Fix mystery CMake error It never happened for me, so maybe it's something that only happens on older CMake versions? I haven't tested on my Raspberry Pi in a while. --- bin2h/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin2h/CMakeLists.txt b/bin2h/CMakeLists.txt index 79713c55..bca86b88 100644 --- a/bin2h/CMakeLists.txt +++ b/bin2h/CMakeLists.txt @@ -30,4 +30,4 @@ if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug") endif() endif() -install(TARGETS bin2h RUNTIME) +install(TARGETS bin2h RUNTIME DESTINATION bin)