Script renames.

This commit is contained in:
casey langen 2022-02-09 17:01:03 -08:00
parent 90e0573e15
commit b6cb62214f
3 changed files with 3 additions and 1 deletions

View File

@ -21,7 +21,9 @@ if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
endif()
# copy boost and ffmpeg libraries (which can't be statically linked) to bin/
# note this step also ensures libraries we depend upon have their rpath values
# so libraries are resolved to the local directory.
if (${BUILD_STANDALONE} MATCHES "true")
message(STATUS "[post-build] copying boost and ffmpeg libs...")
add_custom_command(TARGET postbuild POST_BUILD COMMAND "${CMAKE_CURRENT_SOURCE_DIR}/script/stage-static-vendor-libraries.sh")
add_custom_command(TARGET postbuild POST_BUILD COMMAND "${CMAKE_CURRENT_SOURCE_DIR}/script/stage-vendor-libraries.sh")
endif()