Author Topic: Module not showing up in OS X  (Read 4218 times)

Offline David Raphael

  • PixInsight Addict
  • ***
  • Posts: 226
    • Astrofactors CCD Cameras
Module not showing up in OS X
« 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
David Raphael

Offline David Raphael

  • PixInsight Addict
  • ***
  • Posts: 226
    • Astrofactors CCD Cameras
Re: Module not showing up in OS X
« Reply #1 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;
   }

David Raphael