summaryrefslogtreecommitdiffstats
path: root/kig
diff options
context:
space:
mode:
authorRay-V <ray-v@inbox.lv>2020-03-25 12:16:46 +0000
committerSlávek Banko <slavek.banko@axis.cz>2020-03-29 19:31:59 +0200
commit592b61441c5c16440101cb1ad43455463a0a89c9 (patch)
treee02ae867a716739ea0df5adaf124e2624edf0626 /kig
parentd0cf08e8656236bb45c5ac2b17c5d054e7fd0a4d (diff)
downloadtdeedu-592b61441c5c16440101cb1ad43455463a0a89c9.tar.gz
tdeedu-592b61441c5c16440101cb1ad43455463a0a89c9.zip
Enable kig python scripting for cmake build.
Fix detection of boost_python library for cmake build. Use find_package( Python COMPONENTS ... ) for CMake >= 3.12. Add WITH_KIG_PYTHON_SCRIPTING option. This resolves issue #6. Signed-off-by: Ray-V <ray-v@inbox.lv> Signed-off-by: gregory guy <gregory-tde@laposte.net> Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 324c040645bcaa127717113a4a6cf6cf8693f938)
Diffstat (limited to 'kig')
-rw-r--r--kig/scripting/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/kig/scripting/CMakeLists.txt b/kig/scripting/CMakeLists.txt
index 01a2e5d6..ab158e89 100644
--- a/kig/scripting/CMakeLists.txt
+++ b/kig/scripting/CMakeLists.txt
@@ -11,7 +11,6 @@ include_directories(
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
- ${Boost_LIBRARY_DIRS}
)
@@ -28,8 +27,9 @@ tde_add_library( kigscripting STATIC_PIC AUTOMOC
newscriptwizard.cc
LINK
katepartinterfaces
+ tdetexteditor-shared
${PYTHON_LIBRARIES}
- ${Boost_LIBRARIES}
+ ${Boost_PYTHON_LIBRARY}
)