File: CMakeLists.txt

package info (click to toggle)
juffed 0.10-89-g3690b60-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,160 kB
  • sloc: cpp: 21,060; ansic: 446; xml: 329; sh: 68; makefile: 16
file content (11 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
# python

find_package ( PythonLibs REQUIRED)
INCLUDE_DIRECTORIES ( ${PYTHON_INCLUDE_PATH} )

set ( python_SRC PythonPlugin.cpp )
QT4_WRAP_CPP ( python_MOC PythonPlugin.h )
add_library ( python SHARED ${python_SRC} ${python_MOC} )
target_link_libraries ( python ${JUFFED_LIBRARY} ${QT_LIBRARIES} ${PYTHON_LIBRARIES} )
install ( TARGETS python DESTINATION ${JUFFED_PLUGINS_DIR} )