aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2020-06-16 17:24:04 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2020-06-16 20:22:50 -0400
commit9fcbb994b5326d36008dd7e12305d654d5b479e7 (patch)
treeb96112c97ca5a0022893fc79e61f51c6c21e53e3 /CMakeLists.txt
parent2cd9fbd4171ac7331f6d7d58beca0788a49bc04a (diff)
downloadsplitfits-9fcbb994b5326d36008dd7e12305d654d5b479e7.tar.gz
Add installation target
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
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)