Ver código fonte

Install support added.

main
offa 7 anos atrás
pai
commit
d3436f5cac
2 arquivos alterados com 14 adições e 0 exclusões
  1. +4
    -0
      CMakeLists.txt
  2. +10
    -0
      cmake/Install.cmake

+ 4
- 0
CMakeLists.txt Ver arquivo

@@ -37,3 +37,7 @@ if( UNITTEST )
add_subdirectory("test")
endif()


include(Install)



+ 10
- 0
cmake/Install.cmake Ver arquivo

@@ -0,0 +1,10 @@

include(GNUInstallDirs)

install(TARGETS ScopeGuard
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)



Carregando…
Cancelar
Salvar