Re: UI - files not processed with vcproj generator?

2006-04-23 Thread Albert Astals Cid
A Diumenge 23 Abril 2006 17:24, Christian Ehrlicher va escriure:
 Hi,

 When trying to compile kdeui with mscv/vcproj ui_kspellui.h and the
 other ui_foo.h are not generated.

Need to run qmake?

Albert


 Any ideas?

 Christian
 ___
 Kde-buildsystem mailing list
 Kde-buildsystem@kde.org
 https://mail.kde.org/mailman/listinfo/kde-buildsystem


__ 
LLama Gratis a cualquier PC del Mundo. 
Llamadas a fijos y móviles desde 1 céntimo por minuto. 
http://es.voice.yahoo.com
___
Kde-buildsystem mailing list
Kde-buildsystem@kde.org
https://mail.kde.org/mailman/listinfo/kde-buildsystem


Re: UI - files not processed with vcproj generator?

2006-04-23 Thread Christian Ehrlicher
Albert Astals Cid schrieb:
 A Diumenge 23 Abril 2006 17:24, Christian Ehrlicher va escriure:
 Hi,

 When trying to compile kdeui with mscv/vcproj ui_kspellui.h and the
 other ui_foo.h are not generated.
 
 Need to run qmake?
What should I do with qmake? It's a cmake-project ... :)

Christian
___
Kde-buildsystem mailing list
Kde-buildsystem@kde.org
https://mail.kde.org/mailman/listinfo/kde-buildsystem


Re: UI - files not processed with vcproj generator?

2006-04-23 Thread William A. Hoffman
At 11:46 AM 4/23/2006, Christian Ehrlicher wrote:
Albert Astals Cid schrieb:
 A Diumenge 23 Abril 2006 17:24, Christian Ehrlicher va escriure:
 Hi,

 When trying to compile kdeui with mscv/vcproj ui_kspellui.h and the
 other ui_foo.h are not generated.
 
 Need to run qmake?
What should I do with qmake? It's a cmake-project ... :)

Please see my posts about PATH and the IDE.   Currently the vcproj
builds do not work in kdelibs.  There are two reasons:

1. perl must be in the PATH
2. qt libraries need to be in the PATH.

The visual studio IDE has its own environment.   It does not use
the environment of the shell that launched it or the environment for
the system.  So, the fix is to create .bat files that run all
the tools during the build process of kdelibs.   To handle no rpath,
kdelibs already uses a sh script to do something like this on unix.
So, someone needs to create the .bat files that forward stuff.

-Bill

___
Kde-buildsystem mailing list
Kde-buildsystem@kde.org
https://mail.kde.org/mailman/listinfo/kde-buildsystem


Re: UI - files not processed with vcproj generator?

2006-04-23 Thread Christian Ehrlicher
William A. Hoffman schrieb:
 At 11:46 AM 4/23/2006, Christian Ehrlicher wrote:
 Albert Astals Cid schrieb:
 A Diumenge 23 Abril 2006 17:24, Christian Ehrlicher va escriure:
 Hi,

 When trying to compile kdeui with mscv/vcproj ui_kspellui.h and the
 other ui_foo.h are not generated.
 Need to run qmake?
 What should I do with qmake? It's a cmake-project ... :)
 
 Please see my posts about PATH and the IDE.   Currently the vcproj
 builds do not work in kdelibs.  There are two reasons:
 
 1. perl must be in the PATH
 2. qt libraries need to be in the PATH.
 
 The visual studio IDE has its own environment.   It does not use
 the environment of the shell that launched it or the environment for
 the system.  So, the fix is to create .bat files that run all
 the tools during the build process of kdelibs.   To handle no rpath,
 kdelibs already uses a sh script to do something like this on unix.
 So, someone needs to create the .bat files that forward stuff.
 
I don't understand correct - I don't have problems with my environment
(I think) but I can't find a rule to create ui_kkeydialogui.h from
kkeydialogui.ui. For dcop2idlcpp rules are generated
(kmainwindowiface.kidl  knotificationmanager.kidl) but not fo moc and uic.

Christian
___
Kde-buildsystem mailing list
Kde-buildsystem@kde.org
https://mail.kde.org/mailman/listinfo/kde-buildsystem


Re: UI - files not processed with vcproj generator?

2006-04-23 Thread William A. Hoffman
At 05:00 PM 4/23/2006, Alexander Neundorf wrote:
On Sunday 23 April 2006 21:19, William A. Hoffman wrote:
 At 11:46 AM 4/23/2006, Christian Ehrlicher wrote:
 Albert Astals Cid schrieb:
  A Diumenge 23 Abril 2006 17:24, Christian Ehrlicher va escriure:
  Hi,
 
  When trying to compile kdeui with mscv/vcproj ui_kspellui.h and the
  other ui_foo.h are not generated.
 
  Need to run qmake?
 
 What should I do with qmake? It's a cmake-project ... :)

 Please see my posts about PATH and the IDE.   Currently the vcproj
 builds do not work in kdelibs.  There are two reasons:

 1. perl must be in the PATH
 2. qt libraries need to be in the PATH.

 The visual studio IDE has its own environment.   It does not use
 the environment of the shell that launched it or the environment for
 the system.  So, the fix is to create .bat files that run all
 the tools during the build process of kdelibs.   To handle no rpath,
 kdelibs already uses a sh script to do something like this on unix.
 So, someone needs to create the .bat files that forward stuff.

(my dos times are long ago)
How would such a batch file look like ?

PATH=somepath:$PATH
kconfig_compiler.exe all arguments given to the batch file

Can somebody please give a hint ?

Something like this should work:

set PATH=/path/to/qt/bin;/path/to/perl/bin;${PATH}
tool %* 

The %* will expand to all the arguments given to the .bat file.
A FindPerl will be needed to get the full path to perl.

-Bill



___
Kde-buildsystem mailing list
Kde-buildsystem@kde.org
https://mail.kde.org/mailman/listinfo/kde-buildsystem