web-dev-qa-db-ja.com

GCC検索パスにヘッダーファイルを含める方法

サンプルファイルに次のコードがあります。

#include "SkCanvas.h"
#include "SkDevice.h"
#include "SkGLCanvas.h"
#include "SkGraphics.h"
#include "SkImageEncoder.h"
#include "SkPaint.h"
#include "SkPicture.h"
#include "SkStream.h"
#include "SkWindow.h"

ただし、このコードは/ home/me/development/skia(core/animator/images/ports/svg /などを含む)内のさまざまなフォルダーにあります。

GCCにこのパスを認識させるにはどうすればよいですか?

49
Mark

gcc -c -I/home/me/development/skia sample.chere を参照してください。

74
Tim Gilbert

-Iディレクティブは仕事をします:

gcc -Icore -Ianimator -Iimages -Ianother_dir -Iyet_another_dir my_file.c 
24
Reginaldo