Browse Source

Installation related changes.

main
offa 7 years ago
parent
commit
1cdbbb8456
2 changed files with 5 additions and 9 deletions
  1. +3
    -1
      CMakeLists.txt
  2. +2
    -8
      cmake/Install.cmake

+ 3
- 1
CMakeLists.txt View File





add_library(ScopeGuard INTERFACE) add_library(ScopeGuard INTERFACE)
target_include_directories(ScopeGuard INTERFACE "include")
target_include_directories(ScopeGuard INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>)




if( UNITTEST ) if( UNITTEST )

+ 2
- 8
cmake/Install.cmake View File



include(GNUInstallDirs)

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

install(TARGETS ScopeGuard EXPORT ScopeGuard-config DESTINATION include)
install(EXPORT ScopeGuard-config DESTINATION share/scopeguard/cmake)



Loading…
Cancel
Save