diff options
author | renatofilho <renato.filho@openbossa.org> | 2010-10-07 16:51:12 -0300 |
---|---|---|
committer | renatofilho <renato.filho@openbossa.org> | 2010-10-07 17:31:55 -0300 |
commit | ba54f0956e50c9a667ce160c69592d08ce514382 (patch) | |
tree | c0a78dee1b222e1b050fb759b4c3600df79fffa8 | |
parent | e8e8da9efdcb728dd1989d9274cbc22be22ae9c4 (diff) | |
download | pyside-ba54f0956e50c9a667ce160c69592d08ce514382.tar.gz pyside-ba54f0956e50c9a667ce160c69592d08ce514382.tar.xz pyside-ba54f0956e50c9a667ce160c69592d08ce514382.zip |
Fixed python include var used in plugins project.
Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
Luciano Wolf <luciano.wolf@openbossa.org>
-rw-r--r-- | plugins/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index a9a1e81..792d055 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -13,7 +13,7 @@ set (ui_plugin_moc QT4_WRAP_CPP(MOC_FILES ${ui_plugin_moc}) include_directories(${QT_QTDESIGNER_INCLUDE_DIR} ${SHIBOKEN_INCLUDE_DIR} - ${PYTHON_INCLUDE_DIR}) + ${PYTHON_INCLUDE_PATH}) add_library(uiplugin STATIC ${ui_plugin_src} ${MOC_FILES}) add_definitions(-fPIC) |