diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-06-16 17:24:04 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-06-16 20:22:50 -0400 |
commit | 9fcbb994b5326d36008dd7e12305d654d5b479e7 (patch) | |
tree | b96112c97ca5a0022893fc79e61f51c6c21e53e3 | |
parent | 2cd9fbd4171ac7331f6d7d58beca0788a49bc04a (diff) | |
download | splitfits-9fcbb994b5326d36008dd7e12305d654d5b479e7.tar.gz |
Add installation target
-rw-r--r-- | CMakeLists.txt | 3 |
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) |