Creo Toolkit How to use external shared C libraries
Hello,
I need to make a toolkit that reads the information in an Excel file.
I found some libraries in C that does that and I'm trying to use one of them. The one I'm trying to use is LIBXLS (https://github.com/libxls/libxls)
This library doesn't give the compiled resources, you have to compile by yourself. After some effort I could compile the library using cygwin (gcc, make, etc...).
At the end, I've got the .dll.a and the dll file and all the include files.
When I try to use the library in a C program and compile it using gcc, the library works fine.
But when I do the same thing to compile the toolkit, it doesn't work.
I tryed to use gcc to compile the toolkit, but I couldn't because it depends of some libraries and I'm getting an error when importing the visual studio library libcmt. But the library is not working when I compile the program using the default cl and link from nmake file.
What can I do to use the library inside the toolkit?
Or there is another option to read the excel file?
I'm using Creo 8.0.10

