summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/CMakeLists.txt26
-rw-r--r--utils/Makefile.am1
2 files changed, 27 insertions, 0 deletions
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt
new file mode 100644
index 00000000..3c76e1b5
--- /dev/null
+++ b/utils/CMakeLists.txt
@@ -0,0 +1,26 @@
+# raptor/utils/CMakeLists.txt
+#
+# Original listfile by Daniel Richard G. <skunk@iSKUNK.ORG>
+# This file is in the public domain.
+#
+
+INCLUDE_DIRECTORIES(BEFORE
+ ${CMAKE_SOURCE_DIR}/src
+ ${CMAKE_BINARY_DIR}/src
+ ${CMAKE_CURRENT_SOURCE_DIR}
+)
+
+IF(NOT HAVE_GETOPT AND NOT HAVE_GETOPT_LONG)
+ SET(getopt_sources getopt.c raptor_getopt.h)
+ENDIF(NOT HAVE_GETOPT AND NOT HAVE_GETOPT_LONG)
+
+ADD_EXECUTABLE(rapper rapper.c ${getopt_sources})
+TARGET_LINK_LIBRARIES(rapper raptor2)
+
+ADD_EXECUTABLE(rdfdiff rdfdiff.c ${getopt_sources})
+TARGET_LINK_LIBRARIES(rdfdiff raptor2)
+
+INSTALL(FILES rapper.1 DESTINATION share/man/man1)
+INSTALL(TARGETS rapper DESTINATION bin)
+
+# end raptor/utils/CMakeLists.txt
diff --git a/utils/Makefile.am b/utils/Makefile.am
index 1a434b78..81f0a391 100644
--- a/utils/Makefile.am
+++ b/utils/Makefile.am
@@ -47,6 +47,7 @@ ANALYZE_COMMAND = $(ANALYZE) \
EXTRA_DIST= \
+CMakeLists.txt \
rapper.html \
$(man_MANS)