1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 15:02:34 +02:00

Merge pull request #149 from danhedron/org/copy-license

Copy License to install
This commit is contained in:
Daniel Evans 2016-06-23 00:47:32 +01:00 committed by GitHub
commit d36b813de2

View File

@ -102,3 +102,18 @@ ENDIF()
IF(${BUILD_TESTS})
add_subdirectory(tests)
ENDIF()
#
# Finally
#
# Copy License file to install directory
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux|FreeBSD")
install(FILES COPYING
DESTINATION share/openrw
)
endif()
# And copy to build directory for CI
file(COPY COPYING
DESTINATION .
)