tiger-lib 1.8.0

Library used by the tools ck3-tiger, vic3-tiger, and imperator-tiger. This library holds the bulk of the code for them. It can be built either for ck3-tiger with the feature ck3, or for vic3-tiger with the feature vic3, or for imperator-tiger with the feature imperator, but not both at the same time.
Documentation
1
2
3
4
5
6
7
8
9
flamegraph: always
	cargo flamegraph --profile bench --package=$(PACKAGE) --output=flamegraph.svg -- "$(MOD)"
	rm -f perf.data perf.data.old

flamegraph-single: always
	RAYON_NUM_THREADS=1 cargo flamegraph --profile bench --package=$(PACKAGE) --output=flamegraph-single.svg -- "$(MOD)"
	rm -f perf.data perf.data.old

.PHONY: always