issue with Aspose.Cells library for C++

Can someone please help me with my issue with Aspose.Cells library for C++?

I was writing my first C++ programme using Aspose.Cells library. Everything seemed smooth except that the following error was produced after I built the file:
Error before I launch is:
"Error exist in a required project.Continue launch?"
Error after running the code is:
"**fatal error: boost/config/compiler/gcc.hpp: No such file or directory**".**
If I commented out the line #<include Aspose.Cells.h>, the file can run with no errors.

After I successfully installed and linked Boot library now the fatal error was gone, but I have got three warning message upon building: "Ignoring #pragma warning [-wunknown-pragmas]"

My questions are:
1. are these warning messages serious?

2. I also ran into another fatal error: unicode/uloc.h:No such file or directory. How can I correctly link up to unilib-master/Unicode library?

My code is:
#include <iostream>

#include <Aspose.Cells.h>

using namespace std;

int main() {
cout << "!!!I am little red!!!" << endl;
return 0;
}

Thanks a lot!
Regards
Hillary
Last edited on
fatal error: boost/config/compiler/gcc.hpp: No such file or directory


This means that your project is missing this file. I am not sure what your project depends on, but you should probably check before removing this completely. They may or may not be serious.

fatal error: unicode/uloc.h:No such file or directory


How can I correctly link up to unilib-master/Unicode library?


It depends on your environment. Check with your IDE or makefile (whatever you are using) to ensure that it's being included properly.
Topic archived. No new replies allowed.