Set up build system

This commit is contained in:
Matthias Schiffer 2012-08-23 17:43:26 +02:00
commit b1023b2fb3
4 changed files with 22 additions and 0 deletions

8
ffvisd/CMakeLists.txt Normal file
View file

@ -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)

5
ffvisd/ffvisd.c Normal file
View file

@ -0,0 +1,5 @@
#include <stdio.h>
int main() {
return 0;
}