Skip to content

Commit bc56fbd

Browse files
author
timlinux
committedFeb 18, 2007
Hard code search path for util.h on mac
git-svn-id: http://svn.osgeo.org/qgis/branches/Release-0_8_0@6633 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 04630b7 commit bc56fbd

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed
 

‎CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ ELSE (WIN32)
133133
SET (CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX}/${PROJECT_NAME}.app/Contents/MacOS)
134134
# path for library references
135135
SET (CMAKE_INSTALL_NAME_DIR @executable_path/lib)
136+
INCLUDE_DIRECTORIES(/usr/include)
136137
ENDIF (APPLE)
137138

138139
# common for MAC and UNIX

‎src/plugins/grass/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ QT4_WRAP_CPP (GRASS_PLUGIN_MOC_SRCS ${GRASS_PLUGIN_MOC_HDRS})
6767
ADD_LIBRARY (grassplugin MODULE ${GRASS_PLUGIN_SRCS} ${GRASS_PLUGIN_MOC_SRCS} ${GRASS_PLUGIN_UIS_H})
6868

6969
INCLUDE_DIRECTORIES(
70+
/usr/include
7071
.
7172
${CMAKE_CURRENT_BINARY_DIR}
7273
../../core ../../raster ../../renderer ../../legend

0 commit comments

Comments
 (0)
Please sign in to comment.