summaryrefslogtreecommitdiffstats
path: root/mcopidl
diff options
context:
space:
mode:
authorsamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-10-05 19:35:48 +0000
committersamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-10-05 19:35:48 +0000
commit36bb41f5bea5485f7c47dd18f47fc6177a370270 (patch)
treeb68d307bf656672eb444be1393342607875621ed /mcopidl
parent3a7fbece07c6265d8ca9537efa1d269957bc862a (diff)
downloadarts-36bb41f5bea5485f7c47dd18f47fc6177a370270.tar.gz
arts-36bb41f5bea5485f7c47dd18f47fc6177a370270.zip
[dependencies/arts] added initial cmake support
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/arts@1182851 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'mcopidl')
-rw-r--r--mcopidl/CMakeLists.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/mcopidl/CMakeLists.txt b/mcopidl/CMakeLists.txt
new file mode 100644
index 0000000..ea87893
--- /dev/null
+++ b/mcopidl/CMakeLists.txt
@@ -0,0 +1,34 @@
+#################################################
+#
+# (C) 2010 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+set( mcopidl_SRCS
+ mcopidl.cc
+ yacc.cc
+ scanner.cc
+ namespace.cc
+)
+
+include_directories(
+ ${CMAKE_BINARY_DIR}/mcop # for arts_export.h
+ ${CMAKE_SOURCE_DIR}/mcop # for common.h
+)
+
+#link_directories(
+# ${CMAKE_BINARY_DIR}/mcop
+#)
+
+add_executable( mcopidl ${mcopidl_SRCS} )
+target_link_libraries( mcopidl mcop )
+
+
+##### install ###################################
+
+install( TARGETS mcopidl DESTINATION ${BIN_INSTALL_DIR} )