fatal error: ccOrderChoiceDlg.h: No such file or directory #include <ccOrderChoiceDlg.h>
Though, this header is present in .ccp file of my plugin
Code: Select all
//qCC
#include <ccOrderChoiceDlg.h>
What could be wrong here?
Code: Select all
//qCC
#include <ccOrderChoiceDlg.h>
Code: Select all
#As we are going to re-use several components of the main qCC project
#we define its sources path relatively to the plugin's dir
set(CloudCompare_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../../qCC)
#include the whole CC directory (easier)
include_directories( ${CloudCompare_SOURCE_DIR} )
#we need Color Scale Manager and Editor importer
file( GLOB CC_PLUGIN_CUSTOM_HEADER_LIST ${CloudCompare_SOURCE_DIR}/ccColorScale*.h )
file( GLOB CC_PLUGIN_CUSTOM_SOURCE_LIST ${CloudCompare_SOURCE_DIR}/ccColorScale*.cpp )