Re: [CMake] equivalent cmakelist for this file

2009-02-03 Thread David . Karr
My apologies for responding earlier with an incorrect Subject line. I hope the following will be helpful. From: ankit jain > The objective here to include all the .desc files in the cmakelist and > when we make it it should generate the executable for it like if we > include abc.desc then after

Re: [CMake] equivalent cmakelist for this file

2009-02-02 Thread Bill Hoffman
ankit jain wrote: The objective here to include all the .desc files in the cmakelist and when we make it it should generate the executable for it like if we include abc.desc then after make it should generate a file abc which is executable and a script which has test cases but generated by .des

Re: [CMake] equivalent cmakelist for this file

2009-02-02 Thread Hendrik Sattler
ankit jain schrieb: > The objective here to include all the .desc files in the cmakelist and when > we make it it should generate the executable for it like if we include > abc.desc then after make it should generate a file abc which is executable > and a script which has test cases but generated b

Re: [CMake] equivalent cmakelist for this file

2009-02-02 Thread ankit jain
The objective here to include all the .desc files in the cmakelist and when we make it it should generate the executable for it like if we include abc.desc then after make it should generate a file abc which is executable and a script which has test cases but generated by .desc file only. In order

Re: [CMake] equivalent cmakelist for this file

2009-02-02 Thread ankit jain
Actually my motive is to run executable that are executed through .desc file. so how to write a cmakelist file for that. AJ 2009/2/2 Hendrik Sattler > ankit jain schrieb: > > Then what to do. Is something can be done using Ctest. > > We cannot guess what's in those files. Don't think about wh

Re: [CMake] equivalent cmakelist for this file

2009-02-02 Thread Hendrik Sattler
ankit jain schrieb: > Then what to do. Is something can be done using Ctest. We cannot guess what's in those files. Don't think about what the old build system looks like but think about what you want to achieve. HS ___ CMake mailing list CMake@cmake.or

Re: [CMake] equivalent cmakelist for this file

2009-02-02 Thread ankit jain
Then what to do. Is something can be done using Ctest. ankit 2009/2/2 Hendrik Sattler > ankit jain schrieb: > > Can anybody tell me what should be the equivalent cmakelists file > should for > > this makefile. > > > > Makefile: > > > > include Make.bootstrap > > # List of descriptor files for

Re: [CMake] equivalent cmakelist for this file

2009-02-02 Thread Hendrik Sattler
ankit jain schrieb: > Can anybody tell me what should be the equivalent cmakelists file should for > this makefile. > > Makefile: > > include Make.bootstrap > # List of descriptor files for test scripts > TEST_DESCRIPTORS = a.desc b.desc c.desc d.desc > include $(MAKEMANY) > > here each .desc fi

[CMake] equivalent cmakelist for this file

2009-02-02 Thread ankit jain
hi all, Can anybody tell me what should be the equivalent cmakelists file should for this makefile. Makefile: include Make.bootstrap # List of descriptor files for test scripts TEST_DESCRIPTORS = a.desc b.desc c.desc d.desc include $(MAKEMANY) here each .desc file has script like this: For a.de