Post Go back to editing

Qt project with mcapi

Hi! I want to include MCAPI library in my Qt project. What should I do to make this?

I copied mcapi 2.0 headers into myproject/mcapi folder and append INCLUDEPATH += $$PWD/mcapi into .pro file. Also I appended DEPENDPATH += $$PWD/mcapi and unix:!macx: LIBS += -L$$PWD/mcapi/ -lmcapi. But I get error

mainwindow.o: In function `MainWindow::on_pushButton_2_clicked()':

../myproject/mainwindow.cpp:(.text+0x134): undefined reference to `mcapi_initialize(unsigned int, unsigned int, attributes_t const*, int const*, mcapi_info_t*, unsigned int*)'

collect2: ld returned 1 exit status

Parents
  • I can compile simple examples like "msg1" with linking library from output/staging/..., but Qt project don't want to link library.


    May be this library can be used only in C-projects and not in C++ projects?


    By the way, there is a problem in file mcapi_impl_spec.h - at line 110. I have to comment the word "extern" to successfully compile my program.

    #ifdef __cplusplus

    extern }

    #endif /* __cplusplus */

Reply
  • I can compile simple examples like "msg1" with linking library from output/staging/..., but Qt project don't want to link library.


    May be this library can be used only in C-projects and not in C++ projects?


    By the way, there is a problem in file mcapi_impl_spec.h - at line 110. I have to comment the word "extern" to successfully compile my program.

    #ifdef __cplusplus

    extern }

    #endif /* __cplusplus */

Children
No Data