From 9fcbb994b5326d36008dd7e12305d654d5b479e7 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 16 Jun 2020 17:24:04 -0400 Subject: Add installation target --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3fd16c8..ea12358 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,3 +4,6 @@ project(splitfits C) set(CMAKE_C_STANDARD 99) add_executable(splitfits splitfits.c) + +install(TARGETS splitfits + RUNTIME) -- cgit