サンプルファイルに次のコードがあります。
#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にこのパスを認識させるにはどうすればよいですか?
gcc -c -I/home/me/development/skia sample.c
。 here を参照してください。
-I
ディレクティブは仕事をします:
gcc -Icore -Ianimator -Iimages -Ianother_dir -Iyet_another_dir my_file.c