I have a large project in C-Script and need to begin migrating to Lite-C using the step-by-step approach recommended in the manual. However, I can't seem to get Lite-C and C-Script to work in the same project. I understand C-Script cannot be used in a Lite-C project. My main file is still a WDL and main program is still C-Script. Here's what I'm doing. Where am I going wrong with my includes?
WDL file:
include <liteCfile.c>;
function main()
{
...
liteCfunction();
...
}
C file:
#include <acknex.h>;
function liteCfunction()
{
...
}
I get the following error: Syntax error - nonexistent/empty function liteCfunction
Where am I going wrong?