1

SDL_ttfをCode::Blocks(windows)にリンクする方法について、lazyfoo.netのチュートリアルに従いましたが、何か問題があります。これらのエラーが発生します:

C:\SDL_ttf-2.0.11\include\SDL_ttf.h|30|error: SDL.h: No such file or directory|
C:\SDL_ttf-2.0.11\include\SDL_ttf.h|31|error: begin_code.h: No such file or directory|
C:\SDL_ttf-2.0.11\include\SDL_ttf.h|247|error: close_code.h: No such file or directory|
||=== Build finished: 3 errors, 0 warnings ===|

何か案は?

4

1 に答える 1

0

SDL_ttf.h の変更

#include"SDL.h"
#include"begin_code.h"
#include"close_code.h"

#include<SDL/SDL.h>
#include<SDL/begin_code.h>
#include<SDL/close_code.h>
于 2013-03-13T13:18:00.053 に答える