PixInsight Forum (historical)
Software Development => PCL and PJSR Development => Topic started 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
-
Once again...as soon as I post...I figure the darn problem out ;-)
I guess I had commented out part of this section:
if ( mode == pcl::InstallMode::FullInstall )
{
// new pcl::ExposeImageProcess;
// new pcl::ExposeImageInterface;
// new pcl::ImageAcquisitionSettingsProcess;
// new pcl::ImageAcquisitionSettingsInterface;
}
if ( mode == pcl::InstallMode::FullInstall )
{
new pcl::ExposeImageProcess;
new pcl::ExposeImageInterface;
new pcl::ImageAcquisitionSettingsProcess;
new pcl::ImageAcquisitionSettingsInterface;
}