Hot Door CORE Forum
Notes for using Skeleton project with CORE 0.7.4 - Printable Version

+- Hot Door CORE Forum (http://hotdoorcore.com/forum)
+-- Forum: All forums (http://hotdoorcore.com/forum/forumdisplay.php?fid=1)
+--- Forum: Getting started (http://hotdoorcore.com/forum/forumdisplay.php?fid=6)
+--- Thread: Notes for using Skeleton project with CORE 0.7.4 (/showthread.php?tid=230)



Notes for using Skeleton project with CORE 0.7.4 - Rick Johnson - 12-21-2019

I noticed that when basing a new project on the Skeleton Project in 0.7.4 you'll need to do a couple of tweaks:

The VisualStudio project includes configurations for AI 24, but to use it for AI 24 you'll need to do the following:

  1. Add the resource for hdi_core-win-ai24-rls-32.res to the project
  2. Add the resource for hdi_core-win-ai24-rls-64.res to the project
  3. Change all configurations' settings to include only the one corresponding .res file.
For Xcode, any images such as icons or cursors that you add to an Images folder will not be included in your actual plugin. To fix this, for every target from AI 19 and up, under Build Phases > Run Script, add the following line to the script:

cp "$PROJECT_DIR/../Images/"*.png "$INSTALL_DIR/$FULL_PRODUCT_NAME/Contents/Resources/png/"

There's a similar line in the script now that should remain; it copies images only from the shared hdi_core/Images directory.


RE: Notes for using Skeleton project with CORE 0.7.4 - garrett - 12-22-2019

(12-21-2019, 11:06 AM)Rick Johnson Wrote: The VisualStudio project includes configurations for AI 24, but to use it for AI 24 you'll need to do the following:

  1. Add the resource for hdi_core-win-ai24-rls-32.res to the project
  2. Add the resource for hdi_core-win-ai24-rls-64.res to the project
  3. Change all configurations' settings to include only the one corresponding .res file.

This was a minor oversight, thanks for mentioning it. We'll fix it up for the next release.