summaryrefslogtreecommitdiffstats
path: root/arts/runtime/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'arts/runtime/CMakeLists.txt')
-rw-r--r--arts/runtime/CMakeLists.txt74
1 files changed, 74 insertions, 0 deletions
diff --git a/arts/runtime/CMakeLists.txt b/arts/runtime/CMakeLists.txt
new file mode 100644
index 00000000..794ec7f5
--- /dev/null
+++ b/arts/runtime/CMakeLists.txt
@@ -0,0 +1,74 @@
+#################################################
+#
+# (C) 2017 Slávek Banko
+# slavek (DOT) banko (AT) axis.cz
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include_directories(
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_BINARY_DIR}
+ ${ARTS_INCLUDE_DIRS}
+ ${TQT_INCLUDE_DIRS}
+ ${TDE_INCLUDE_DIR}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+ ${ARTS_LIBRARY_DIRS}
+)
+
+add_definitions(
+ -DEXAMPLES_DIR="${DATA_INSTALL_DIR}/artsbuilder/examples"
+)
+
+
+##### artsbuilder (library) #####################
+
+tde_add_library( artsbuilder SHARED
+ SOURCES
+ artsbuilder.cc sequenceutils.cc
+ structurebuilder_impl.cc structures_impl.cc moduleinfo.cc
+ compatibility.cc localfactory_impl.cc artsbuilderloader_impl.cc
+ VERSION 0.0.0
+ LINK
+ mcop artsflow artsflow_idl ${DL_LIBRARIES} ${ARTS_LIBRARIES}
+ DESTINATION ${LIB_INSTALL_DIR}
+)
+
+add_custom_command(
+ OUTPUT
+ artsbuilder.cc artsbuilder.h
+ artsbuilder.mcoptype artsbuilder.mcopclass
+ COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
+ -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/artsbuilder.idl
+ DEPENDS artsbuilder.idl
+)
+
+
+##### other data ################################
+
+install(
+ FILES
+ artsbuilder.idl
+ ${CMAKE_CURRENT_BINARY_DIR}/artsbuilder.h
+ DESTINATION ${INCLUDE_INSTALL_DIR}/arts
+)
+
+install(
+ FILES
+ ${CMAKE_CURRENT_BINARY_DIR}/artsbuilder.mcoptype
+ ${CMAKE_CURRENT_BINARY_DIR}/artsbuilder.mcopclass
+ DESTINATION ${LIB_INSTALL_DIR}/mcop
+)
+
+install(
+ FILES
+ StructureBuilder.mcopclass StructureDesc.mcopclass
+ LocalFactory.mcopclass ArtsBuilderLoader.mcopclass
+ DESTINATION ${LIB_INSTALL_DIR}/mcop/Arts
+)