Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions backend-v2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -244,16 +244,16 @@ if(APPLE)
if(DSYMUTIL_TOOL)
add_custom_command(TARGET clojure-rt POST_BUILD
COMMAND ${DSYMUTIL_TOOL} $<TARGET_FILE:clojure-rt>
COMMENT "Generowanie pliku .dSYM dla clojure-rt..."
COMMENT "Generating the .dSYM file for clojure-rt..."
VERBATIM
)
endif()

# Opcjonalnie: jeśli chcesz, aby binarka po wyciągnięciu symboli była mniejsza:
# Optional: if you want the binary to be smaller after stripping symbols:
if(CMAKE_BUILD_TYPE STREQUAL "Release")
add_custom_command(TARGET clojure-rt POST_BUILD
COMMAND strip -x $<TARGET_FILE:clojure-rt>
COMMENT "Stripping binarki (usuwanie zbędnych symboli)..."
COMMENT "Stripping the binary (removing unnecessary symbols)..."
DEPENDS clojure-rt
)
endif()
Expand Down
Loading
Loading