Library Intellisense Issue

Sysprogs forums Forums VisualGDB Library Intellisense Issue

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #7492
    Trygve
    Participant

    Just downloaded the trial. We have a lot of in-house libraries in our project so that is the first thing I tested.

    The program and the debugging were great. However intellisense has no idea about the library.

    #include <string.h>
    #include <jni.h>
    #include <stdio.h>
    #include “Library.h”

    int s_ButtonPressCounter = 0;

    Imagine that italic part with a squiggly line. The function MyTestFunction was also not recognized. Again I want to emphasize that the function was called correctly on the android device so it is not a compiler problem.

    The tutorial for creating a native library did not mention any steps involving adding include directories, is that necessary to get intellisense to work correctly?

     

    #7494
    philmacu
    Participant

    On my build I had to point intellisense to both a local source and a remote one

    for example I added a local reference

    c:\Qt\4.8.6\include\Qt

    and on the remote machine

    /usr/include/qt4

    I found it best to add \Qt \QtGui \QtCore (again local and remote)

    both are added via the VisualGDB proberties -> intellisenseSettings

    #7495
    Trygve
    Participant

    There isn’t any remote machine involved here.

    #7497
    support
    Keymaster

    Hi,

    Did you get any toolchain testing errors while creating your project? Normally IntelliSense is configured based on the results of a toolchain test.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.