Invalidate C++ app

master
Fabien Freling 4 years ago
parent 6eb0e61426
commit fda60ba538
  1. 1
      Makefile
  2. 9
      scripts/invalidate_cpp.sh

@ -6,6 +6,7 @@ BUILD:=_build
core:
dune build src/core/cbindings.exe.o
ar -rs $(BUILD)/liboboycore.a _build/default/src/core/cbindings.exe.o
scripts/invalidate_cpp.sh
# check:
# ocamlbuild -use-ocamlfind -I src -lflag -g test/test_bit.byte --

@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -euo pipefail
for dir in _build/qt/*; do
pushd $dir
cmake --build . --target clean
popd
done
Loading…
Cancel
Save