We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b2d0f21 + 5552fb4 commit 4bae1a4Copy full SHA for 4bae1a4
.ci/ci
@@ -25,6 +25,9 @@ make -j8 run-unit-tests
25
make -j8 run-rust-unit-tests
26
make -j8 run-valgrind-on-unit-tests
27
28
+# BUild simulator
29
+make -j8 simulator
30
+
31
# Rust linter
32
make -j8 run-rust-clippy
33
test/simulator/CMakeLists.txt
@@ -182,4 +182,11 @@ target_link_libraries(simulator PRIVATE
182
bitbox-simulator
183
-Wl,--end-group
184
""
185
-)
+)
186
187
+add_custom_command(
188
+ TARGET simulator POST_BUILD
189
+ COMMAND ${CMAKE_STRIP} simulator
190
+ WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
191
+ COMMENT "\nStripping simulator binary"
192
0 commit comments