Hi, I’m trying to get my Visual Studio code to compile under vscode. I am using R16 release, did all the download with leaf and have selected R16 stable. I’ve selected my app, and tried to build it, but it gets stuck on the first api line:
le_mdc = le_mdc.api
Says it “couldn’t find file le_mde.api”.
What am I missing?
I still get the same error. Here is the error:
/home/steve/Rev16/inseego/ConnMgr/ConnTestComp/Component.cdef:11:2: error: Can’t find dependent .api file: ‘le_mdc.api’.
The terminal process “/bin/bash ‘-c’, ‘mkapp ${LEGATO_DEF_FILE} -s components -t ${LEGATO_TARGET} -w ${LEGATO_OBJECT_DIR} -o ${LEGATO_OUTPUT_DIR}’” failed to launch (exit code: 1).
the default compilation command is just for some very basic app like helloworld, you can see it did not add much .api file.
Actually you can refer the makefile for each sample application:
OK, I guess I wasn’t very clear. I have several projects that have been compiling and working under R13 with Dev Studio. I’m trying to get my code/project to compile under R16 with VsCode.
So, I’m confused. I have makefiles that were generated by the old Dev Studio. Visual Studio doesn’t use those, and there are no other makefiles, and I didn’t get any errors about makefile not found. Where do I hook in a makefile to the project?
How does it even get that far without a makefile?