[Oorexx-devel] Are test suite adjustments needed for the cmake build?

2014-06-12 Thread Rick McGuire
I'm guessing there might need to be some adjustments made in the build suite for locating information in out-of-source builds. For example, I'm sure the process of locating the headers required for building the native api tests will require adjustment. The readme doesn't give any hints about

Re: [Oorexx-devel] Are test suite adjustments needed for the cmake build?

2014-06-12 Thread Mark Miesfeld
To locate the header files, the test suite uses the REXX_HOME variable, if I remember correctly. It also tries to locate the buildDir. So, you could set REXX_HOME to point to where the header, lib files are. I've got to go right now, the code is in ::routine locateAPIDir in building.frm. I'll

Re: [Oorexx-devel] Are test suite adjustments needed for the cmake build?

2014-06-12 Thread Mark Miesfeld
I was taking a look a the test suit to fix this up if needed. Looking at the code, it seems setting REXX_API to point to: build\_CPack_Packages\win64\NSIS\ooRexx-4.3.0-win64\DevLib\api should work. But, I discovered that rxregexp.dll is not getting built correctly. so the test suite won't run.

Re: [Oorexx-devel] Are test suite adjustments needed for the cmake build?

2014-06-12 Thread Rick McGuire
Ok, I think rxregexp should be fixed now. There was a typo in the target dependencies that prevented it using the .rc and .def file on the link. The .def file was the kiss of death that prevented it from loading. Rick On Thu, Jun 12, 2014 at 3:01 PM, Mark Miesfeld miesf...@gmail.com wrote:

Re: [Oorexx-devel] Are test suite adjustments needed for the cmake build?

2014-06-12 Thread Mark Miesfeld
Okay, thanks Rick. -- Mark Miesfeld On Thu, Jun 12, 2014 at 12:11 PM, Rick McGuire object.r...@gmail.com wrote: Ok, I think rxregexp should be fixed now. There was a typo in the target dependencies that prevented it using the .rc and .def file on the link. The .def file was the kiss of