Add install steps
Signed-off-by: Uilian Ries <uilianries@gmail.com>
This commit is contained in:
parent
e368d847d7
commit
2fcb26b82e
@ -37,3 +37,16 @@ if (SCAN_FOUND)
|
|||||||
else()
|
else()
|
||||||
MESSAGE(STATUS "scan-build not found, not scanning code")
|
MESSAGE(STATUS "scan-build not found, not scanning code")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
include(GNUInstallDirs)
|
||||||
|
|
||||||
|
install(TARGETS minmea
|
||||||
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
||||||
|
LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}"
|
||||||
|
ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}")
|
||||||
|
install(FILES minmea.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
||||||
|
if(MSVC)
|
||||||
|
install(FILES compat/minmea_compat_windows.h
|
||||||
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
||||||
|
RENAME minmea_compat.h)
|
||||||
|
endif()
|
Loading…
Reference in New Issue
Block a user