Merge pull request #2 from feddischson/master

Closes dnwrnr/sgp4#1
feature/19
Daniel Warner 2018-02-11 14:59:46 +00:00 committed by GitHub
commit a38a8fdbba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 1 deletions

View File

@ -16,4 +16,26 @@ set(SRCS
Util.cpp
Vector.cpp)
add_library(sgp4 STATIC ${SRCS})
set(INCS
CoordGeodetic.h
CoordTopocentric.h
DateTime.h
DecayedException.h
Eci.h
Globals.h
Observer.h
OrbitalElements.h
SatelliteException.h
SGP4.h
SolarPosition.h
TimeSpan.h
TleException.h
Tle.h
Util.h
Vector.h
)
add_library(sgp4 STATIC ${SRCS} ${INCS})
add_library(sgp4s SHARED ${SRCS} ${INCS})
install( TARGETS sgp4s LIBRARY DESTINATION lib )
install( FILES ${INCS} DESTINATION include/SGP4 )