Python added to build of effect engine

Former-commit-id: 5e8e7e18630b51b4ec51d0f7efed7de2a88cccfa
This commit is contained in:
johan 2013-11-24 18:53:20 +01:00
parent 5454ddb375
commit 72acdd655d
2 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,6 @@
ON RASPBERRY
--------------
sudo apt-get install libprotobuf-dev libQt4-dev libusb-1.0-0-dev rsync
sudo apt-get install libprotobuf-dev libQt4-dev libusb-1.0-0-dev python-dev rsync
ON HOST
---------

View File

@ -1,4 +1,8 @@
find_package(PythonLibs REQUIRED)
include_directories(${PYTHON_INCLUDE_DIRS})
# Define the current source locations
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/effectengine)
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/effectengine)
@ -28,4 +32,5 @@ add_library(effectengine
target_link_libraries(effectengine
hyperion
${QT_LIBRARIES})
${QT_LIBRARIES}
${PYTHON_LIBRARIES})