Build Shaper in Window 10,How to set Environment param

I built Shaper in Window 10,at the shapergui_app project ,How to set GUI_ROOT_DIR、SHAPER_ROOT_DIR ?


int main(int argc, char *argv)
{
constexpr char GUI_ROOT_DIR=“GUI_ROOT_DIR”;
constexpr char SHAPER_ROOT_DIR=“SHAPER_ROOT_DIR”;
constexpr char LIGHTAPPCONFIG=“LightAppConfig”;
QProcessEnvironment pe(QProcessEnvironment::systemEnvironment());
if(!pe.contains(SHAPER_ROOT_DIR))
{
std::cerr << SHAPER_ROOT_DIR << " is not defined in your environment !" << std::endl;
return 1;
}
if(!pe.contains(GUI_ROOT_DIR))
{
std::cerr << GUI_ROOT_DIR << " is not defined in your environment !" << std::endl;
return 1;
}


Error

Can not load application library “LightApp.dll”: 找不到指定的模块。


OK

Now I got this error!