mirror of
https://github.com/lsalzman/enet
synced 2024-11-20 22:15:57 -07:00
CMake: Improve install instructions (#244)
This commit is contained in:
parent
5857b13df1
commit
4ce1625b8a
1 changed files with 8 additions and 6 deletions
|
@ -98,10 +98,12 @@ if (WIN32)
|
|||
target_link_libraries(enet winmm ws2_32)
|
||||
endif()
|
||||
|
||||
include(GNUInstallDirs)
|
||||
install(TARGETS enet
|
||||
RUNTIME DESTINATION bin
|
||||
ARCHIVE DESTINATION lib/static
|
||||
LIBRARY DESTINATION lib)
|
||||
|
||||
install(DIRECTORY include/
|
||||
DESTINATION include)
|
||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
)
|
||||
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/enet
|
||||
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue