From 69a8c628631d48b8b04d6fa3029248a2f8ece72b Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Tue, 21 Jul 2020 21:21:29 +0200 Subject: [PATCH] Add install directives to CMakeLists Otherwise `make install` or `cmake --install` does not work --- src/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0bdeb0bd..6ac95ad5 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -76,6 +76,7 @@ foreach(PROG "asm" "fix" "gfx" "link") ${rgb${PROG}_src} ${common_src} ) + install(TARGETS rgb${PROG} DESTINATION bin) endforeach() if(CMAKE_VERSION VERSION_LESS 2.8.12)