From eb0b9390ff99067414bc77c1471438717aad6923 Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Fri, 10 Nov 2023 16:31:32 +0000 Subject: [PATCH] Install static library --- libsgp4/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/libsgp4/CMakeLists.txt b/libsgp4/CMakeLists.txt index f70d73b..421917f 100644 --- a/libsgp4/CMakeLists.txt +++ b/libsgp4/CMakeLists.txt @@ -37,5 +37,6 @@ set(SRCS add_library(sgp4 STATIC ${SRCS} ${INCS}) add_library(sgp4s SHARED ${SRCS} ${INCS}) +install( TARGETS sgp4 LIBRARY DESTINATION lib ) install( TARGETS sgp4s LIBRARY DESTINATION lib ) install( FILES ${INCS} DESTINATION include/libsgp4 )