Ugh, fix incorrect path variable.

This commit is contained in:
casey langen 2020-04-07 00:28:43 -07:00
parent aa2ccdb0b2
commit 28e3ed18f8

View File

@ -368,5 +368,5 @@ add_custom_command(TARGET postbuild POST_BUILD COMMAND cmake .)
# strip binaries in release mode # strip binaries in release mode
if (CMAKE_BUILD_TYPE MATCHES Release) if (CMAKE_BUILD_TYPE MATCHES Release)
message(STATUS "stripping binaries...") message(STATUS "stripping binaries...")
add_custom_command(TARGET postbuild POST_BUILD COMMAND "${CMAKE_CURRENT_BINARY_DIR}/strip-nix.sh") add_custom_command(TARGET postbuild POST_BUILD COMMAND "${CMAKE_SOURCE_DIR}/strip-nix.sh")
endif() endif()