Fix cmake/OSX build after path changes.

This commit is contained in:
Brecht Van Lommel 2010-07-04 16:20:42 +00:00
parent 05d2b904b2
commit cc68f45502
2 changed files with 9 additions and 1 deletions

@ -33,6 +33,10 @@
#ifndef BLI_UTIL_H
#define BLI_UTIL_H
#ifdef __cplusplus
extern "C" {
#endif
struct ListBase;
struct direntry;
@ -191,5 +195,9 @@ void BLI_where_is_temp(char *fullname, int usertemp);
void BLI_string_to_utf8(char *original, char *utf_8, const char *code);
#endif
#ifdef __cplusplus
}
#endif
#endif

@ -34,7 +34,7 @@ SET(INC
)
IF(APPLE)
SET(SRC ${SRC} intern/path_util_cocoa.m)
SET(SRC ${SRC} intern/path_util_cocoa.mm)
ENDIF(APPLE)
IF(CMAKE_SYSTEM_NAME MATCHES "Linux")