[Buildroot] qmake -o Makefile cannot create Makefile

Yann E. MORIN yann.morin.1998 at free.fr
Mon Aug 27 20:59:03 UTC 2012


Belisko, All,

On Monday 27 August 2012 22:46:35 Belisko Marek wrote:
> I'm trying to add qt based application to be compiled in buildroot.
> App is using qmake infrastructure which is not supported in BR.
> 
> I just want to hack it somehow so choose generic-package and plan use configure
> step to generate Makefile with qmake (then continue with Makefile).
> 
> mk file:
> +#############################################################
> +#
> +# song
> +#
> +#############################################################
> +
> +SONG_VERSION = master
> +SONG_SITE    = https://github.com/nandra/songPresentation.git
> +SONG_SITE_METHOD = git
> +
> +define SONG_CONFIGURE_CMDS
> +	$(HOST_DIR)/usr/bin/qmake -o Makefile -v $(@D)/songPresentation.pro
> +endef

I think you should write it that way (untested!):

define SONG_CONFIGURE_CMDS
	cd $(@D); \
	$(HOST_DIR)/usr/bin/qmake -o Makefile -v songPresentation.pro
endef

or maybe:

define SONG_CONFIGURE_CMDS
	cd $(@D) && \
	$(HOST_DIR)/usr/bin/qmake -o Makefile -v songPresentation.pro
endef

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'


More information about the buildroot mailing list