IDE don't find header file

asked 2016-03-29 07:51:01 -0500

Hunk gravatar image

Hello,

I'm using qtcreator 3.4.2 with ROS groovy

I have a problem with finding a few header files inside my IDE. But building runs well.

I tried the same setup without catkin

#include <iostream>
#include "json/json.h"

int main()
{
  std::cout << "hello include \n";
  return 0;
}

CMakeLists.txt

INCLUDE_DIRECTORIES(${CMAKE_CURRENT_LIST_DIR}/common/third_party)
add_executable(main main.cpp)

If I integrate this the IDE find my json.h

If I integrate the same in my package, the IDE tells me that the header is not found. But i can build without Problems. Anyone has an idea why QTcreator don't find this header if I use catkin?

edit retag flag offensive close merge delete