mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +02:00
3d3f93275d
- fixed starting armies of some heroes, including Bron #1602 - (debian) added vcmi-dbg package with debug information - proper randomization of hero secondary skills, fixes #1603 - second capitol will show up as disabled immediately #1604 - proper deserialization of boost::variant - empty file will no longer crash JsonNode parser - fixed some compiler warnings
17 lines
431 B
Makefile
Executable File
17 lines
431 B
Makefile
Executable File
#! /usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
# override disabled by default rpath - we need to find libvcmi.so with it:
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- -DCMAKE_SKIP_RPATH=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBIN_DIR=games
|
|
.PHONY: override_dh_strip
|
|
override_dh_strip:
|
|
dh_strip --dbg-package=vcmi-dbg
|
|
override_dh_auto_install:
|
|
dh_auto_install --destdir=debian/vcmi
|
|
override_dh_installdocs:
|
|
dh_installdocs --link-doc=vcmi
|
|
|