11 lines
362 B
Plaintext
11 lines
362 B
Plaintext
|
#!/usr/bin/make -f
|
||
|
|
||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||
|
include /usr/share/cdbs/1/class/cmake.mk
|
||
|
|
||
|
CFLAGS:=$(shell dpkg-buildflags --get CFLAGS)
|
||
|
LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)
|
||
|
|
||
|
DEB_CMAKE_EXTRA_FLAGS=-DCMAKE_BUILD_TYPE="RelWithDebInfo"
|
||
|
DEB_CMAKE_EXTRA_FLAGS+=-DCMAKE_SHARED_LINKER_FLAGS="$(LDFLAGS)" -DCMAKE_EXE_LINKER_FLAGS="$(LDFLAGS)"
|