diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-02-22 17:34:21 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-02-23 01:53:26 +0100 |
commit | 9fb8dff10efc9869264e55da64b64c4aadf805a6 (patch) | |
tree | fcac980032d9c414ae086756f3dd7b94d1a7cc55 /src/irmd | |
parent | 4251bbb496e64aeeceb70ab1a6716201051769e1 (diff) | |
download | ouroboros-9fb8dff10efc9869264e55da64b64c4aadf805a6.tar.gz ouroboros-9fb8dff10efc9869264e55da64b64c4aadf805a6.zip |
src: Rename daemons and add tools folder
This renames the daemons to end with a 'd', as is common for UNIX
daemons. It also adds a tools folder, that will hold the tools of the
Ouroboros prototype. Examples are a simple echo application, an
application to instruct the IRM ...
Diffstat (limited to 'src/irmd')
-rw-r--r-- | src/irmd/CMakeLists.txt | 16 | ||||
-rw-r--r-- | src/irmd/main.c | 10 |
2 files changed, 26 insertions, 0 deletions
diff --git a/src/irmd/CMakeLists.txt b/src/irmd/CMakeLists.txt new file mode 100644 index 00000000..bda793b7 --- /dev/null +++ b/src/irmd/CMakeLists.txt @@ -0,0 +1,16 @@ +include_directories(${CMAKE_CURRENT_SOURCE_DIR}) +include_directories(${CMAKE_CURRENT_BINARY_DIR}) + +include_directories(${CMAKE_SOURCE_DIR}/include) +include_directories(${CMAKE_BINARY_DIR}/include) + +set(SOURCE_FILES + # Add source files here + main.c +) + +add_executable (irmd ${SOURCE_FILES}) + +target_link_libraries (irmd LINK_PUBLIC ouroboros) + +install(TARGETS irmd RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}) diff --git a/src/irmd/main.c b/src/irmd/main.c new file mode 100644 index 00000000..8ab071e0 --- /dev/null +++ b/src/irmd/main.c @@ -0,0 +1,10 @@ +#define OUROBOROS_PREFIX "irm" + +#include <ouroboros/logs.h> + +int main() +{ + LOG_DBG("Test of the IRM"); + + return 0; +} |