diff options
author | renatofilho <renato.filho@openbossa.org> | 2010-10-25 20:13:28 -0300 |
---|---|---|
committer | renatofilho <renato.filho@openbossa.org> | 2010-10-26 11:02:13 -0300 |
commit | 78ab6c87ea27bf6f21d5144a2df5f977b90f7940 (patch) | |
tree | aabbfdc4a7841a311533eec45464209e96cfced4 /plugins | |
parent | 77a1654ad587241d3c14bafa2c0deae53e1599ee (diff) | |
download | pyside-78ab6c87ea27bf6f21d5144a2df5f977b90f7940.tar.gz pyside-78ab6c87ea27bf6f21d5144a2df5f977b90f7940.tar.xz pyside-78ab6c87ea27bf6f21d5144a2df5f977b90f7940.zip |
Fixed plugin compilation problems on MacOS.
Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
Marcelo Lira <marcelo.lira@openbossa.org>
Diffstat (limited to 'plugins')
-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 e7a8fd1..58beca9 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -10,11 +10,11 @@ set (ui_plugin_moc customwidgets.h ) -QT4_WRAP_CPP(MOC_FILES ${ui_plugin_moc}) include_directories(${QT_QTDESIGNER_INCLUDE_DIR} ${SHIBOKEN_INCLUDE_DIR} ${PYTHON_INCLUDE_PATH}) +QT4_WRAP_CPP(MOC_FILES ${ui_plugin_moc}) add_library(uiplugin STATIC ${ui_plugin_src} ${MOC_FILES}) add_definitions(-fPIC) add_definitions(-DQT_STATICPLUGIN) |