From d4a1613e9f119ae68c695ab60f8d9856d1a54a52 Mon Sep 17 00:00:00 2001 From: gregory guy Date: Thu, 27 Jun 2019 16:35:25 +0200 Subject: Conversion to the cmake building system. Add includes to UI files to resolve FTBFS. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: gregory guy Signed-off-by: Slávek Banko --- kig/scripting/CMakeLists.txt | 41 ++++++++++++++++++++++++++++++++++++++++ kig/scripting/python_scripter.cc | 3 ++- 2 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 kig/scripting/CMakeLists.txt (limited to 'kig/scripting') diff --git a/kig/scripting/CMakeLists.txt b/kig/scripting/CMakeLists.txt new file mode 100644 index 00000000..01a2e5d6 --- /dev/null +++ b/kig/scripting/CMakeLists.txt @@ -0,0 +1,41 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} + ${PYTHON_INCLUDE_DIRS} + ${Boost_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} + ${Boost_LIBRARY_DIRS} +) + + +##### kigscripting (static) + +tde_add_library( kigscripting STATIC_PIC AUTOMOC + + SOURCES + newscriptwizardbase.ui + python_type.cc + python_scripter.cc + script-common.cc + script_mode.cc + newscriptwizard.cc + LINK + katepartinterfaces + ${PYTHON_LIBRARIES} + ${Boost_LIBRARIES} +) + + +##### other data + +install( + FILES python-kig.xml + DESTINATION ${DATA_INSTALL_DIR}/katepart/syntax +) diff --git a/kig/scripting/python_scripter.cc b/kig/scripting/python_scripter.cc index 7e833d5c..00c7e162 100644 --- a/kig/scripting/python_scripter.cc +++ b/kig/scripting/python_scripter.cc @@ -15,6 +15,7 @@ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA // 02110-1301, USA. +#include "config.h" #include "python_scripter.h" #include @@ -357,7 +358,7 @@ PythonScripter::PythonScripter() // the newstring stuff is to prevent warnings about conversion from // const char* to char*.. char* s = newstring( "kig" ); - PyImport_AppendInittab( s, initkig ); + PyImport_AppendInittab( s, KIG_Python_init ); // we can't delete this yet, since python keeps a pointer to it.. // This means we have a small but harmless memory leak here, but it // doesn't hurt at all, since it could only be freed at the end of -- cgit v1.2.1