PixInsight Forum (historical)

Software Development => PCL and PJSR Development => Topic started by: David Raphael on 2011 January 13 11:36:31

Title: Module not showing up in OS X
Post by: David Raphael on 2011 January 13 11:36:31
I have built my module for Windows, installed it, and I can see the icons under the module that I created...

I have also built my module for OS X, installed it, but I don't see the icons for my process.  Is there anything I should look at that you know of?

Cheers,
Dave
Title: Re: Module not showing up in OS X
Post by: David Raphael on 2011 January 13 11:46:53
Once again...as soon as I post...I figure the darn problem out ;-)

I guess I had commented out part of this section:

Code: [Select]

   if ( mode == pcl::InstallMode::FullInstall )
   {
//    new pcl::ExposeImageProcess;
//     new pcl::ExposeImageInterface;
//     new pcl::ImageAcquisitionSettingsProcess;
//     new pcl::ImageAcquisitionSettingsInterface;
   }



Code: [Select]

   if ( mode == pcl::InstallMode::FullInstall )
   {
     new pcl::ExposeImageProcess;
     new pcl::ExposeImageInterface;
     new pcl::ImageAcquisitionSettingsProcess;
     new pcl::ImageAcquisitionSettingsInterface;
   }