CMakeLists.txt 368 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

add_library(Geo
	Constants.hpp
	Math.cpp
	Math.hpp
	MGRS.cpp
	MGRS.hpp
	PolarStereographic.cpp
	PolarStereographic.hpp
	QGCGeo.cc
	QGCGeo.h
	TransverseMercator.cpp
	TransverseMercator.hpp
	Utility.cpp
	Utility.h
	Utility.hpp
	UTMUPS.cpp
	UTMUPS.hpp
)

target_link_libraries(Geo
	PUBLIC
		qgc
)

target_include_directories(Geo
	PUBLIC
		${CMAKE_CURRENT_SOURCE_DIR}
)