Skip to content

Commit

Permalink
Set Grantlee_INCLUDE_DIRS, not Grantlee_INCLUDE_DIR.
Browse files Browse the repository at this point in the history
  • Loading branch information
steveire authored and Stephen Kelly committed Apr 9, 2010
1 parent b54d247 commit 73edf91
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmake/modules/GrantleeConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set(Grantlee_VERSION_MINOR "@Grantlee_VERSION_MINOR@")
set(Grantlee_VERSION_PATCH "@Grantlee_VERSION_PATCH@")

set(Grantlee_INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@")
set(Grantlee_INCLUDE_DIR "@CMAKE_INSTALL_PREFIX@/include")
set(Grantlee_INCLUDE_DIRS "@CMAKE_INSTALL_PREFIX@/include")

if (MINGW)
set(Grantlee_LIBRARY_DIR "@CMAKE_INSTALL_PREFIX@/bin")
Expand Down
2 changes: 1 addition & 1 deletion dox/using_and_deploying.dox
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace Grantlee

include_directories(
${QT_INCLUDES}
${Grantlee_INCLUDE_DIR}
${Grantlee_INCLUDE_DIRS}
${PROJECT_BINARY_DIR} # Usually this is needed to find moc files.
)

Expand Down
2 changes: 1 addition & 1 deletion examples/books/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ include_directories(
${QT_INCLUDES}
${QT_QTGUI_INCLUDE_DIR}
${QT_QTSQL_INCLUDE_DIR}
${Grantlee_INCLUDE_DIR}
${Grantlee_INCLUDE_DIRS}
${PROJECT_BINARY_DIR}
)

Expand Down
2 changes: 1 addition & 1 deletion examples/codegen/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ include_directories(
${QT_INCLUDES}
${QT_QTGUI_INCLUDE_DIR}
${QT_QTSQL_INCLUDE_DIR}
${Grantlee_INCLUDE_DIR}
${Grantlee_INCLUDE_DIRS}
${PROJECT_BINARY_DIR}
${PROJECT_SOURCE_DIR}
)
Expand Down
2 changes: 1 addition & 1 deletion examples/textedit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include_directories(
${QT_INCLUDES}
${QT_QTGUI_INCLUDE_DIR}
${PROJECT_BINARY_DIR}
${Grantlee_INCLUDE_DIR}
${Grantlee_INCLUDE_DIRS}
)

## Grantlee plugin
Expand Down

0 comments on commit 73edf91

Please sign in to comment.