cmake: fix install lib path message

This commit is contained in:
Michael Dusan 2020-01-17 00:35:34 -05:00
parent 0240fd9140
commit 97cca1376a
No known key found for this signature in database
GPG Key ID: ED4C5BA849FA1B74

View File

@ -647,6 +647,6 @@ add_dependencies(zig zig_build_libuserland)
install(TARGETS zig DESTINATION bin)
# CODE has no effect with Visual Studio build system generator
install(CODE "message(\"-- Installing: /opt/zig/lib\")")
# CODE has no effect with Visual Studio build system generator.
install(CODE "message(\"-- Installing: ${CMAKE_INSTALL_PREFIX}/lib\")")
install(CODE "execute_process(COMMAND ${BUILD_LIBUSERLAND_COMMAND} install)")