From 85c1666f908e3c00ec26695fd92ef45dca6e6f01 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Mon, 15 Nov 2021 17:38:15 +0100 Subject: [PATCH] Prefix program names with "ovni" The "emu" and "dump" programs now are called "ovniemu" and "ovnidump". --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5d8c659..cc71577 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -53,7 +53,7 @@ add_library(ovni SHARED target_include_directories(ovni PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) -add_executable(emu +add_executable(ovniemu chan.c emu.c emu_nosv.c @@ -67,7 +67,7 @@ add_executable(emu prv.c ) -add_executable(dump +add_executable(ovnidump dump.c ovni.c parson.c @@ -90,5 +90,5 @@ add_executable(ovnisync ovnisync.c) target_link_libraries(ovnisync m MPI::MPI_C) install(TARGETS ovni LIBRARY) -install(TARGETS emu dump ovni2prv ovnisync RUNTIME) +install(TARGETS ovniemu ovnidump ovni2prv ovnisync RUNTIME) install(FILES ovni.h DESTINATION include)