컴퓨터/프로그래밍/Database

MYSQL 헤더 파일과 라이브러리 파일 위치 찾기

Rough Existence 2008. 6. 27. 01:14
mysql_config --cflags => 헤더파일 위치
mysql_config --libs => 라이브러리 위치

 예) Makefile

INCLUDES = $shell mysql_config --cflags
LIBS = $shell mysql_config --libs