cb47d1d9ff
maintaining GUI (graphical user interface) applications. Qt is written in C++ and is fully object-oriented. It has everything you need to create professional GUI applications. And it enables you to create them quickly. Qt is a multi-platform toolkit. When developing software with Qt, you can run it on the X Window System (Unix/X11) or Microsoft Windows NT and Windows 95/98. Simply recompile your source code on the platform you want. Qt cuts down the complexity in implementing large and complex systems. Its ingenious signal-slot technology enables true component programming.
20 lines
419 B
Makefile
20 lines
419 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2006/02/20 12:08:11 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.qt4
|
|
PKG_SUPPORTED_OPTIONS= cups debug
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mcups)
|
|
. include "../../print/cups/buildlink3.mk"
|
|
CONFIGURE_ARGS+= -cups
|
|
.else
|
|
CONFIGURE_ARGS+= -no-cups
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CC+= -ggdb
|
|
CXX+= -ggdb
|
|
CONFIGURE_ARGS+= --debug
|
|
INSTALL_UNSTRIPPED= yes
|
|
.endif
|