summaryrefslogtreecommitdiffstats
path: root/ffvisd
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2012-08-23 17:43:26 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2012-08-23 17:43:26 +0200
commitb1023b2fb389f6760c0658274c9d13ed37f87927 (patch)
tree5f3113b6b31052448126c8da98747607669ebd0e /ffvisd
downloadffd-b1023b2fb389f6760c0658274c9d13ed37f87927.tar
ffd-b1023b2fb389f6760c0658274c9d13ed37f87927.zip
Set up build system
Diffstat (limited to 'ffvisd')
-rw-r--r--ffvisd/CMakeLists.txt8
-rw-r--r--ffvisd/ffvisd.c5
2 files changed, 13 insertions, 0 deletions
diff --git a/ffvisd/CMakeLists.txt b/ffvisd/CMakeLists.txt
new file mode 100644
index 0000000..c0f1bec
--- /dev/null
+++ b/ffvisd/CMakeLists.txt
@@ -0,0 +1,8 @@
+include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${FFD_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR})
+
+add_executable(ffvisd
+ ffvisd.c
+)
+target_link_libraries(ffvisd rt)
+
+install(TARGETS ffvisd RUNTIME DESTINATION sbin)
diff --git a/ffvisd/ffvisd.c b/ffvisd/ffvisd.c
new file mode 100644
index 0000000..dc79d60
--- /dev/null
+++ b/ffvisd/ffvisd.c
@@ -0,0 +1,5 @@
+#include <stdio.h>
+
+int main() {
+ return 0;
+}