diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-11-08 10:47:41 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-11-08 10:47:41 -0500 |
commit | b29c18ad9b449a02cd11bcbc27ef40f892089403 (patch) | |
tree | c5eb5abc92b4527a8de2f40185c2c8204999640b | |
parent | 963c0bd8688bb25ee7fd662fc6294e85f33ea166 (diff) | |
download | reloc-b29c18ad9b449a02cd11bcbc27ef40f892089403.tar.gz |
Generate install target
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c8055f..fc688f9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,3 +5,5 @@ set(CMAKE_C_STANDARD 99) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -Wall -Wextra") add_executable(reloc main.c reloc.h) +install(TARGETS reloc + RUNTIME DESTINATION bin) |