Set up build system
This commit is contained in:
commit
b1023b2fb3
4 changed files with 22 additions and 0 deletions
8
ffvisd/CMakeLists.txt
Normal file
8
ffvisd/CMakeLists.txt
Normal 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
5
ffvisd/ffvisd.c
Normal file
|
@ -0,0 +1,5 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
return 0;
|
||||
}
|
Reference in a new issue